Commit 3ffa5dbf authored by xixinzhao's avatar xixinzhao

巡检隐患审核修改

parent a8e79b14
......@@ -748,6 +748,7 @@ public class LatentDangerServiceImpl implements ILatentDangerService {
LatentDangerDetailVo detailVo = new LatentDangerDetailVo();
if (latentDangerBo != null) {
detailVo.setDangerId(latentDangerBo.getId());
detailVo.setDangerIdWeb(String.valueOf(latentDangerBo.getId()));
detailVo.setDangerType(latentDangerBo.getDangerType());
// if(position.size()>0){
// detailVo.setPosition(position.get(latentDangerBo.getStructureId()).toString());
......@@ -799,6 +800,7 @@ public class LatentDangerServiceImpl implements ILatentDangerService {
// }
// }
detailVo.setCurrentFlowRecordId(latentDangerBo.getCurrentFlowRecordId());
detailVo.setCurrentFlowRecordIdWeb(String.valueOf(latentDangerBo.getCurrentFlowRecordId()));
if (!StringUtils.isEmpty(latentDangerBo.getReformJson())) {
detailVo.setReformJson(JSONObject.parseObject(latentDangerBo.getReformJson()));
}
......
......@@ -11,6 +11,8 @@ public class LatentDangerDetailVo {
private Long dangerId;
private String dangerIdWeb;
private String dangerName;
private String level;
......@@ -29,6 +31,8 @@ public class LatentDangerDetailVo {
private Long currentFlowRecordId;
private String currentFlowRecordIdWeb;
private String dangerState;
private String dangerType;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment