Merge remote-tracking branch 'origin/master'
正在显示
2 个修改的文件
包含
11 行增加
和
1 行删除
... | @@ -80,6 +80,7 @@ public class AlarmCustomRecordHistoryServiceImpl extends ServiceImpl<AlarmRecord | ... | @@ -80,6 +80,7 @@ public class AlarmCustomRecordHistoryServiceImpl extends ServiceImpl<AlarmRecord |
80 | List<AlarmRecordHistoryVO> recordList = pagelist.getRecords(); | 80 | List<AlarmRecordHistoryVO> recordList = pagelist.getRecords(); |
81 | if(recordList!=null&&recordList.size()>0) { | 81 | if(recordList!=null&&recordList.size()>0) { |
82 | for(AlarmRecordHistoryVO record : recordList) { | 82 | for(AlarmRecordHistoryVO record : recordList) { |
83 | if(ConvertUtils.isNotEmpty(record.getAlarmCustomRuleTypeTreepath())){ | ||
83 | String alarmCustomRuleTypeTreepath = record.getAlarmCustomRuleTypeTreepath(); | 84 | String alarmCustomRuleTypeTreepath = record.getAlarmCustomRuleTypeTreepath(); |
84 | String[] customRuleTypeArray = alarmCustomRuleTypeTreepath.split(","); | 85 | String[] customRuleTypeArray = alarmCustomRuleTypeTreepath.split(","); |
85 | String customRuleTypeTreepathName = ""; | 86 | String customRuleTypeTreepathName = ""; |
... | @@ -89,7 +90,8 @@ public class AlarmCustomRecordHistoryServiceImpl extends ServiceImpl<AlarmRecord | ... | @@ -89,7 +90,8 @@ public class AlarmCustomRecordHistoryServiceImpl extends ServiceImpl<AlarmRecord |
89 | if(StringUtils.isNotEmpty(customRuleTypeTreepathName)) { | 90 | if(StringUtils.isNotEmpty(customRuleTypeTreepathName)) { |
90 | record.setAlarmCustomRuleTypeTreepathName(customRuleTypeTreepathName.substring(1)); | 91 | record.setAlarmCustomRuleTypeTreepathName(customRuleTypeTreepathName.substring(1)); |
91 | } | 92 | } |
92 | 93 | } | |
94 | if(ConvertUtils.isNotEmpty(record.getAlarmRuleTypeTreepath())){ | ||
93 | String alarmRuleTypeTreepath = record.getAlarmRuleTypeTreepath(); | 95 | String alarmRuleTypeTreepath = record.getAlarmRuleTypeTreepath(); |
94 | String[] ruleTypeArray = alarmRuleTypeTreepath.split(","); | 96 | String[] ruleTypeArray = alarmRuleTypeTreepath.split(","); |
95 | String alarmRuleTypeTreepathName = ""; | 97 | String alarmRuleTypeTreepathName = ""; |
... | @@ -101,6 +103,7 @@ public class AlarmCustomRecordHistoryServiceImpl extends ServiceImpl<AlarmRecord | ... | @@ -101,6 +103,7 @@ public class AlarmCustomRecordHistoryServiceImpl extends ServiceImpl<AlarmRecord |
101 | } | 103 | } |
102 | } | 104 | } |
103 | } | 105 | } |
106 | } | ||
104 | //添加流程信息 | 107 | //添加流程信息 |
105 | //获取流程实例id集合 | 108 | //获取流程实例id集合 |
106 | Set<String> processInstanceIdSet = new HashSet<String>(); | 109 | Set<String> processInstanceIdSet = new HashSet<String>(); | ... | ... |
... | @@ -274,6 +274,13 @@ public class EquipmentInfo { | ... | @@ -274,6 +274,13 @@ public class EquipmentInfo { |
274 | @ApiModelProperty(value = "报废日期") | 274 | @ApiModelProperty(value = "报废日期") |
275 | private String scrapDate; | 275 | private String scrapDate; |
276 | 276 | ||
277 | @ApiModelProperty(value = "性能分数") | ||
278 | private String performanceScore; | ||
279 | @ApiModelProperty(value = "设备健康度") | ||
280 | private String equipmentHealthLevel; | ||
281 | @ApiModelProperty(value = "设备健康状态") | ||
282 | private String equipmentHealthStatus; | ||
283 | |||
277 | //检测机构 | 284 | //检测机构 |
278 | @ApiModelProperty(value = "检测机构") | 285 | @ApiModelProperty(value = "检测机构") |
279 | private String testingDepart; | 286 | private String testingDepart; | ... | ... |
-
请 注册 或 登录 后发表评论