From a72fc337fe95e2193fd9b72fccad6bff88f41fe1 Mon Sep 17 00:00:00 2001
From: wr <1754607820@qq.com>
Date: Wed, 6 Sep 2023 14:21:16 +0800
Subject: [PATCH 01/14] =?UTF-8?q?1.=E6=8A=80=E6=9C=AF=E7=9B=91=E7=9D=A3?=
=?UTF-8?q?=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../njcn/process/pojo/vo/SupvProblemVO.java | 126 ++++++------------
.../mapper/mapping/SupvProblemMapper.xml | 2 +-
.../impl/SupvAlarmBackServiceImpl.java | 2 +-
.../service/impl/SupvAlarmServiceImpl.java | 2 +-
.../service/impl/SupvPlanHisServiceImpl.java | 2 +-
.../service/impl/SupvPlanServiceImpl.java | 2 +-
.../service/impl/SupvProblemServiceImpl.java | 27 +++-
7 files changed, 72 insertions(+), 91 deletions(-)
diff --git a/pqs-process/process-api/src/main/java/com/njcn/process/pojo/vo/SupvProblemVO.java b/pqs-process/process-api/src/main/java/com/njcn/process/pojo/vo/SupvProblemVO.java
index 8696cfcab..a06a209f0 100644
--- a/pqs-process/process-api/src/main/java/com/njcn/process/pojo/vo/SupvProblemVO.java
+++ b/pqs-process/process-api/src/main/java/com/njcn/process/pojo/vo/SupvProblemVO.java
@@ -25,129 +25,89 @@ public class SupvProblemVO {
private static final long serialVersionUID = 1L;
- @Excel(name = "",width = 15)
- private String problemId;
- @Excel(name = "",width = 15)
+ @Excel(name = "计划名称",width = 40)
private String workPlanName;
- @Excel(name = "",width = 15)
- private String provinceId;
-
- @Excel(name = "",width = 15)
- private String planId;
-
- @Excel(name = "",width = 15)
+ @Excel(name = "责任单位编号",width = 15)
private String dutyOrgId;
- @Excel(name = "",width = 15)
+ @Excel(name = "责任单位名称",width = 15)
private String dutyOrgName;
- @Excel(name = "",width = 15)
+ @Excel(name = "监测点类型",width = 15)
private String monitorType;
-
- @JsonFormat(pattern = "yyyy-MM-dd")
- @TableField(updateStrategy = FieldStrategy.IGNORED)
- @Excel(name = "",width = 15)
- private LocalDateTime rectificationTime;
-
-
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "",width = 15)
- private LocalDateTime planRectificationTime;
-
- /**
- * 是否发布预告警
- */
- @Excel(name = "",width = 15)
+ @Excel(name = "是否发布预告警",width = 15,replace= {"否_0", "是_1"})
private Integer ifReleaseWarning;
- /**
- * 问题简要描述
- */
- @Excel(name = "",width = 15)
- private String simpleProblemDesc;
+ @Excel(name = "计划整改时间",width = 15)
+ private String planRectificationTime;
- /**
- * 监督标准序号
- */
- @Excel(name = "",width = 15)
+ @Excel(name = "整改情况",width = 15,replace = {"已整改_01","未整改_02"})
+ private String rectificationStatus;
+
+ @Excel(name = "整改时间",width = 15)
+ private String rectificationTime;
+
+
+ @Excel(name = "监督标准",width = 15)
+ private String supvStandard;
+
+
+ @Excel(name = "监督标准序号",width = 15)
private String supvStandardSort;
- /**
- * 问题描述
- */
- @Excel(name = "",width = 15)
+ @Excel(name = "标准出处",width = 15)
+ private String supvResouce;
+
+ @Excel(name = "问题等级",width = 15)
+ private String problemLevel;
+
+
+ @Excel(name = "问题类型",width = 15)
+ private String problemType;
+
+
+ @Excel(name = "问题简要描述",width = 40)
+ private String simpleProblemDesc;
+
+
+ @Excel(name = "问题描述",width = 200)
private String problemDesc;
/**
- * 监督标准
+ * 问题发现时间
*/
- private String supvStandard;
-
- /**
- * 标准出处
- */
- private String supvResouce;
-
- /**
- * 问题等级 01 一般,02 较大
- */
- private String problemLevel;
+ @Excel(name = "问题发现时间",width = 15)
+ private String discoveryTime;
/**
* 定级依据
*/
+ @Excel(name = "定级依据",width = 15)
private String problemLevelReason;
- /**
- * 问题类型
- */
- private String problemType;
/**
* 整改方案
*/
+ @Excel(name = "整改方案",width = 50)
private String rectificationProgramme;
- /**
- * 整改情况01已整改,02未整改
- */
- private String rectificationStatus;
+
/**
* 整改措施
*/
+ @Excel(name = "整改措施",width = 40)
private String rectificationMeasure;
-
- /**
- * 0.以上送 1.未上送 2.取消上送
- */
- private Integer isUploadHead;
-
/**
* 备注
*/
+ @Excel(name = "备注",width = 40)
private String remark;
- @TableField(exist = false)
- @ApiModelProperty(name = "attachmentName", value = "盖章报告")
- private String attachmentName;
-
-
- @TableField(exist = false)
- @ApiModelProperty(name = "attachmentNameTwo", value = "佐证材料")
- private String attachmentNameTwo;
-
- /**
- * 问题发现时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private LocalDateTime discoveryTime;
-
-
-
}
diff --git a/pqs-process/process-boot/src/main/java/com/njcn/process/mapper/mapping/SupvProblemMapper.xml b/pqs-process/process-boot/src/main/java/com/njcn/process/mapper/mapping/SupvProblemMapper.xml
index c1178b56c..512c44e4e 100644
--- a/pqs-process/process-boot/src/main/java/com/njcn/process/mapper/mapping/SupvProblemMapper.xml
+++ b/pqs-process/process-boot/src/main/java/com/njcn/process/mapper/mapping/SupvProblemMapper.xml
@@ -8,7 +8,7 @@