From bffe9b9f5e6dd6a10a1e694bf5d6f146f4682ebc Mon Sep 17 00:00:00 2001 From: duwenyuan <15600000461@163.com> Date: Thu, 18 Dec 2025 14:52:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=B8=E8=AE=BE=E6=96=BD?= =?UTF-8?q?=E6=94=BE=E5=B0=84=E6=80=A7=E6=8E=92=E6=94=BE=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../GardsNuclearReleaseRecords.java | 75 +++++++++++-------- 1 file changed, 42 insertions(+), 33 deletions(-) diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearReleaseRecords.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearReleaseRecords.java index 58774a4..94e04f7 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearReleaseRecords.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearReleaseRecords.java @@ -29,65 +29,72 @@ public class GardsNuclearReleaseRecords implements Serializable { private Integer id; /** - * 排放年份 + * 设施名称 */ - @Excel(name = "排放年份", width = 20,height = 20,orderNum="0") - @TableField(value = "RELEASE_DATE") - private Integer releaseDate; + @Excel(name = "设施名称", width = 20,height = 20,orderNum="0") + @TableField(value = "FACILITY_NAME") + private String facilityName; /** - * 排放类型 + * 纬度 */ - @Excel(name = "排放类型", width = 20,height = 20,orderNum="1") - @TableField(value = "RELEASE_TYPE") - private String releaseType; + @Excel(name = "纬度", width = 20, height = 20, orderNum = "1") + @TableField(value = "LATITUDE") + private Double latitude; /** - * 地点名称 + * 经度 */ - @Excel(name = "地点名称", width = 20,height = 20,orderNum="2") - @TableField(value = "SITE_NAME") - private String siteName; + @Excel(name = "经度", width = 20, height = 20, orderNum = "2") + @TableField(value = "LONGITUDE") + private Double longitude; + /** - * 装置/设施 + * 开始时间 */ - @Excel(name = "装置/设施", width = 20,height = 20,orderNum="3") - @TableField(value = "INSTALLATION") - private String installation; - + @Excel(name = "开始时间", format = "yyyy-MM-dd HH:mm:ss", width = 20, height = 20, orderNum = "3") + @TableField(value = "START_TIME", fill = FieldFill.INSERT_UPDATE) + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") + private Date startTime; /** - * 核素类型 + * 结束时间 */ - @Excel(name = "核素类型", width = 20,height = 20,orderNum="4") - @TableField(value = "NUCLIDE_TYPE") - private String nuclideType; + @Excel(name = "结束时间", format = "yyyy-MM-dd HH:mm:ss", width = 20, height = 20, orderNum = "4") + @TableField(value = "END_TIME", fill = FieldFill.INSERT_UPDATE) + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") + private Date endTime; + /** * 具体核素 */ - @Excel(name = "具体核素", width = 20,height = 20,orderNum="5") + @Excel(name = "核素", width = 20,height = 20,orderNum="5") @TableField(value = "NUCLIDE") private String nuclide; /** - * 活度/活动性 + *释放量 */ - @Excel(name = "活度/活动性", width = 20,height = 20,orderNum="6") - @TableField(value = "ACTIVITY") - private String activity; + @Excel(name = "释放量", width = 20,height = 20,orderNum="6") + @TableField(value = "RELEASE_AMOUNT") + private String releaseAmount; /** - *数据来源 + * 物质状态 1-气体,2-气溶胶 */ + @Excel(name = "物质状态", width = 20,height = 20,orderNum="7") + @TableField(value = "MATTER_STATE") + private Integer matterState; + + /** + * 数据来源 1-监测数据,2-重建数据,3-评估数据 + */ + @Excel(name = "数据来源", width = 20,height = 20,orderNum="8") @TableField(value = "DATA_SOURCE") private Integer dataSource; - /* - 优先级 - */ - @TableField(value = "PRIORITY_LEVEL") - private Integer priorityLevel; - /** * 修改时间 @@ -96,4 +103,6 @@ public class GardsNuclearReleaseRecords implements Serializable { @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date moddate; + + } \ No newline at end of file