35e5ee8a 康伟

Merge remote-tracking branch 'origin/master'

2 个父辈 41fa5181 3f99ad9c
......@@ -80,6 +80,7 @@ public class AlarmCustomRecordHistoryServiceImpl extends ServiceImpl<AlarmRecord
List<AlarmRecordHistoryVO> recordList = pagelist.getRecords();
if(recordList!=null&&recordList.size()>0) {
for(AlarmRecordHistoryVO record : recordList) {
if(ConvertUtils.isNotEmpty(record.getAlarmCustomRuleTypeTreepath())){
String alarmCustomRuleTypeTreepath = record.getAlarmCustomRuleTypeTreepath();
String[] customRuleTypeArray = alarmCustomRuleTypeTreepath.split(",");
String customRuleTypeTreepathName = "";
......@@ -89,7 +90,8 @@ public class AlarmCustomRecordHistoryServiceImpl extends ServiceImpl<AlarmRecord
if(StringUtils.isNotEmpty(customRuleTypeTreepathName)) {
record.setAlarmCustomRuleTypeTreepathName(customRuleTypeTreepathName.substring(1));
}
}
if(ConvertUtils.isNotEmpty(record.getAlarmRuleTypeTreepath())){
String alarmRuleTypeTreepath = record.getAlarmRuleTypeTreepath();
String[] ruleTypeArray = alarmRuleTypeTreepath.split(",");
String alarmRuleTypeTreepathName = "";
......@@ -101,6 +103,7 @@ public class AlarmCustomRecordHistoryServiceImpl extends ServiceImpl<AlarmRecord
}
}
}
}
//添加流程信息
//获取流程实例id集合
Set<String> processInstanceIdSet = new HashSet<String>();
......
......@@ -274,6 +274,13 @@ public class EquipmentInfo {
@ApiModelProperty(value = "报废日期")
private String scrapDate;
@ApiModelProperty(value = "性能分数")
private String performanceScore;
@ApiModelProperty(value = "设备健康度")
private String equipmentHealthLevel;
@ApiModelProperty(value = "设备健康状态")
private String equipmentHealthStatus;
//检测机构
@ApiModelProperty(value = "检测机构")
private String testingDepart;
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!