|
@@ -31,10 +31,7 @@ import java.io.BufferedReader;
|
|
|
import java.io.FileReader;
|
|
|
import java.lang.reflect.Method;
|
|
|
import java.time.LocalDateTime;
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
+import java.util.*;
|
|
|
|
|
|
/**
|
|
|
* @Description 自定义表单表 service 实现类
|
|
@@ -195,6 +192,11 @@ public class CustomFormServiceImpl extends BaseServiceImpl<CustomFormMapper, Cus
|
|
|
mapper.updateByPrimaryKeySelective(form);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<CustomFormVO> selectIndexList(CustomFormDTO record) {
|
|
|
+ return mapper.selectIndexList(record);
|
|
|
+ }
|
|
|
+
|
|
|
private List<CustomFieldDTO> transfer(List<CustomFormBomField> fields){
|
|
|
List<CustomFieldDTO> dtos = new ArrayList<>();
|
|
|
if(CollectionUtil.isNotEmpty(fields)){
|