1.pms全过程用户临时档案功能
This commit is contained in:
@@ -120,6 +120,10 @@ public enum DicDataTypeEnum {
|
||||
|
||||
DEVICE_UNIT("数据单位类型","Device_Unit"),
|
||||
//国网上送
|
||||
pms_disturb_type("pms国网上送干扰源类型","pms_disturb_type"),
|
||||
pms_disturb_sort("pms国网上送干扰源类别","pms_disturb_sort"),
|
||||
type_of_station("站房类型","type_of_station"),
|
||||
File_status("档案状态","File_status"),
|
||||
USER_CLASS("用户分类","User_Class"),
|
||||
IMPORTANCE_LEVEL("重要性等级","Importance_Level"),
|
||||
ELE_CLASS("用电类别","Ele_Class"),
|
||||
|
||||
@@ -28,5 +28,6 @@ public class DictDataCache implements Serializable {
|
||||
|
||||
private String typeCode;
|
||||
|
||||
private Integer algoDescribe;
|
||||
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
t1.code code,
|
||||
t1.sort sort,
|
||||
t1.value,
|
||||
t1.Algo_Describe,
|
||||
t2.id typeId,
|
||||
t2.name typeName,
|
||||
t2.code typeCode
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user