From a4071114fc0ef2d358739abb72891eaa69ce3abc Mon Sep 17 00:00:00 2001 From: duwenyuan <15600000461@163.com> Date: Thu, 11 Dec 2025 16:22:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=BB=BC=E5=90=88=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E5=BA=93=E5=AE=9E=E4=BD=93=E7=B1=BB=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../base/entity/configuration/GardsAccelerator.java | 2 +- .../entity/configuration/GardsCorrectionFactor.java | 4 ++-- .../configuration/GardsNuclearFuelFacilities.java | 4 ++-- .../entity/configuration/GardsNuclearReactors.java | 4 ++-- .../configuration/GardsNuclearReleaseRecords.java | 12 ++++++------ .../configuration/GardsNuclearTestingPlant.java | 4 ++-- .../entity/configuration/GardsResearchReactors.java | 4 ++-- .../base/entity/configuration/GardsStations.java | 3 +++ 8 files changed, 20 insertions(+), 17 deletions(-) diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsAccelerator.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsAccelerator.java index 823f7ca..0843d5f 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsAccelerator.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsAccelerator.java @@ -12,7 +12,7 @@ import java.time.LocalDateTime; import java.util.Date; /** - * 研究设施信息实体类 + * 加速器信息 * 对应数据库表结构 */ @Data diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsCorrectionFactor.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsCorrectionFactor.java index 7cd1c2f..ed90967 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsCorrectionFactor.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsCorrectionFactor.java @@ -10,8 +10,8 @@ import java.io.Serializable; import java.util.Date; /** - * 校正因子实体类 - * 对应数据库表 GARDS_CORRECTION_FACTOR + * 探测器模拟及联符合校正因子库数据 + * */ @Data @TableName("CONFIGURATION.GARDS_CORRECTION_FACTOR") diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearFuelFacilities.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearFuelFacilities.java index 0279c2a..14b9a09 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearFuelFacilities.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearFuelFacilities.java @@ -12,8 +12,8 @@ import java.time.LocalDateTime; import java.util.Date; /** - * 设施基础信息实体类 - * 对应数据库表结构 + * 后处理厂设施信息 + * */ @Data @TableName("CONFIGURATION.gards_nuclear_fuel_facilities") diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearReactors.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearReactors.java index c71b98f..720eed3 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearReactors.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearReactors.java @@ -15,8 +15,8 @@ import java.time.LocalDateTime; import java.util.Date; /** - * 核反应堆机组 - * 使用 Lombok + * 核设施信息 + * */ @Data 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 a6bd31f..58774a4 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 @@ -12,8 +12,8 @@ import java.time.LocalDateTime; import java.util.Date; /** - * 核素释放记录实体类 - * 对应数据库表结构 + * 核设施放射性排放记录信息 + * */ @Data @TableName("CONFIGURATION.GARDS_NUCLEAR_RELEASE_RECORDS") @@ -29,16 +29,16 @@ public class GardsNuclearReleaseRecords implements Serializable { private Integer id; /** - * 释放年份 + * 排放年份 */ - @Excel(name = "释放年份", width = 20,height = 20,orderNum="0") + @Excel(name = "排放年份", width = 20,height = 20,orderNum="0") @TableField(value = "RELEASE_DATE") private Integer releaseDate; /** - * 释放类型 + * 排放类型 */ - @Excel(name = "释放类型", width = 20,height = 20,orderNum="1") + @Excel(name = "排放类型", width = 20,height = 20,orderNum="1") @TableField(value = "RELEASE_TYPE") private String releaseType; diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearTestingPlant.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearTestingPlant.java index e0b5202..54db86c 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearTestingPlant.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsNuclearTestingPlant.java @@ -13,8 +13,8 @@ import java.time.LocalDateTime; import java.util.Date; /** - * 设施信息实体类 - * 对应数据库表结构 + * 核试验信息 + * */ @Data @TableName("CONFIGURATION.GARDS_NUCLEAR_TESTING_PLANT") diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsResearchReactors.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsResearchReactors.java index 5534192..d76bd6e 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsResearchReactors.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsResearchReactors.java @@ -12,8 +12,8 @@ import java.time.LocalDateTime; import java.util.Date; /** - * 核设施基础信息实体类 - * 对应数据库表结构 + * 研究型反应堆, + * 同位素生产反应堆 */ @Data @TableName("CONFIGURATION.GARDS_RESEARCH_REACTORS") diff --git a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsStations.java b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsStations.java index b13e739..5015d17 100644 --- a/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsStations.java +++ b/jeecg-boot-base-core/src/main/java/org/jeecg/modules/base/entity/configuration/GardsStations.java @@ -12,6 +12,9 @@ import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; +/** + * 台站信息 + */ @Data @TableName(value = "CONFIGURATION.GARDS_STATIONS") public class GardsStations implements Serializable {