法规清单-列表展示数据 设计、验证符合性流程状态处理。
This commit is contained in:
+4
@@ -487,8 +487,12 @@ public class ProjectLawsInventoryEO implements Serializable {
|
||||
/**设计符合性确认-流程状态*/
|
||||
@ApiModelProperty(value = "设计符合性确认-流程状态")
|
||||
private String designFlowStatus;
|
||||
@TableField(exist = false)
|
||||
private String designFlowStatusName;
|
||||
|
||||
/**验证符合性确认-流程状态*/
|
||||
@ApiModelProperty(value = "验证符合性确认-流程状态")
|
||||
private String verifyFlowStatus;
|
||||
@TableField(exist = false)
|
||||
private String verifyFlowStatusName;
|
||||
}
|
||||
|
||||
+10
@@ -1665,6 +1665,16 @@ public class ProjectLawsInventoryEOServiceImpl extends ServiceImpl<ProjectLawsIn
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 处理符合性流程状态。
|
||||
if(StringUtils.isNotEmpty(projectLawsInventoryEO.getDesignFlowStatus())){
|
||||
String designFlowStatusName = ComplianceFlowStatusEnum.getTextByValue(projectLawsInventoryEO.getDesignFlowStatus(), cut);
|
||||
projectLawsInventoryEO.setDesignFlowStatusName(designFlowStatusName);
|
||||
}
|
||||
if(StringUtils.isNotEmpty(projectLawsInventoryEO.getVerifyFlowStatus())){
|
||||
String verifyFlowStatusName = ComplianceFlowStatusEnum.getTextByValue(projectLawsInventoryEO.getVerifyFlowStatus(), cut);
|
||||
projectLawsInventoryEO.setVerifyFlowStatusName(verifyFlowStatusName);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user