1.异常数据界面业务调整

2.技术监督增加仿真治理方案
This commit is contained in:
wr
2026-01-04 14:50:03 +08:00
parent 63603dee08
commit fe029fcb95
10 changed files with 404 additions and 100 deletions

View File

@@ -23,6 +23,7 @@ public class UserReportNormalParam extends BaseParam {
private static final long serialVersionUID = 1L;
private String id;
@ApiModelProperty(value = "保存1,提交审批2")
private String saveOrCheckflag;
/**
@@ -40,6 +41,11 @@ public class UserReportNormalParam extends BaseParam {
*/
private String reportUrl;
/**
* 治理方案仿真校验评估报告
*/
private String simulationReportUrl;
/**
* 1:审批中2审批通过3审批不通过4已取消
*/

View File

@@ -37,6 +37,12 @@ public class UserReportNormalPO extends BaseEntity {
*/
private String reportUrl;
/**
* 治理方案仿真校验评估报告
*/
private String simulationReportUrl;
private String processInstanceId;
private String historyInstanceId;

View File

@@ -209,6 +209,9 @@ public class UserReportVO {
@ApiModelProperty(value = "入网评估报告和治理报告的文件路径名")
private String otherReport;
@ApiModelProperty(value = "仿真治理评估告")
private String simulationReport;
private String userReportId;
}
@@ -221,5 +224,8 @@ public class UserReportVO {
@ApiModelProperty(value = "治理评估告")
private List<String> governReport;
@ApiModelProperty(value = "仿真治理评估告")
private List<String> simulationReport;
}
}