1.pms全过程用户临时档案功能

This commit is contained in:
2024-10-24 20:30:22 +08:00
parent 0eeedf8f35
commit 448f76d646
24 changed files with 1000 additions and 27 deletions

View File

@@ -9,6 +9,7 @@
t1.code code,
t1.sort sort,
t1.value,
t1.Algo_Describe,
t2.id typeId,
t2.name typeName,
t2.code typeCode

View File

@@ -104,6 +104,7 @@ public class DictTypeServiceImpl extends ServiceImpl<DictTypeMapper, DictType> i
simpleDTO.setName(dictDataCache.getName());
simpleDTO.setSort(dictDataCache.getSort());
simpleDTO.setValue(dictDataCache.getValue());
simpleDTO.setAlgoDescribe(dictDataCache.getAlgoDescribe());
return simpleDTO;
}).sorted(Comparator.comparing(SimpleDTO::getSort)).collect(Collectors.toList());
simpleTreeDTO.setChildren(simpleDTOList);