1.台账管理干扰源用户和敏感用户模板调整,解决批量导入bug

This commit is contained in:
wr
2024-06-24 16:32:43 +08:00
parent e140ba4fe3
commit 8db6ddaeb5
7 changed files with 67 additions and 72 deletions

View File

@@ -115,7 +115,7 @@ public class SensitiveReportExcel implements Serializable {
@Data
@EqualsAndHashCode(callSuper = true)
public static class SensitiveReportExcelMsg extends SensitiveReportExcel implements Serializable {
@Excel(name = "错误信息描述")
@Excel(name = "错误信息描述", width = 30)
private String msg;
}

View File

@@ -37,6 +37,8 @@ public class SensitiveUserSExcel implements Serializable {
@Excel(name = "*变电站", width = 30)
@NotBlank(message = "变电站不能为空")
private String substation;
@Excel(name = "*负荷级别", width = 30)
@NotBlank(message = "*负荷级别不能为空")
private String loadLevel;
@@ -151,9 +153,8 @@ public class SensitiveUserSExcel implements Serializable {
@Data
@EqualsAndHashCode(callSuper = true)
public static class SensitiveUserExcelMsg extends SensitiveUserSExcel implements Serializable {
@Excel(name = "错误信息描述")
@Excel(name = "错误信息描述", width = 30)
private String msg;
}
}

View File

@@ -116,6 +116,9 @@ public class UserReportParam {
private String saveOrCheckflag;
@ApiModelProperty(value="数据来源类型 0正常审核流程 1批量导入")
private Integer dataType;
private UserReportProjectPO userReportProjectPO;
private UserReportSensitivePO userReportSensitivePO;