Merge remote-tracking branch 'origin/master'

This commit is contained in:
hekaiyu 2025-12-11 16:36:52 +08:00
commit 8edd0cdb16
8 changed files with 20 additions and 17 deletions

View File

@ -12,7 +12,7 @@ import java.time.LocalDateTime;
import java.util.Date;
/**
* 研究设施信息实体类
* 加速器信息
* 对应数据库表结构
*/
@Data

View File

@ -10,8 +10,8 @@ import java.io.Serializable;
import java.util.Date;
/**
* 校正因子实体类
* 对应数据库表 GARDS_CORRECTION_FACTOR
* 探测器模拟及联符合校正因子库数据
*
*/
@Data
@TableName("CONFIGURATION.GARDS_CORRECTION_FACTOR")

View File

@ -12,8 +12,8 @@ import java.time.LocalDateTime;
import java.util.Date;
/**
* 设施基础信息实体类
* 对应数据库表结构
* 后处理厂设施信息
*
*/
@Data
@TableName("CONFIGURATION.gards_nuclear_fuel_facilities")

View File

@ -15,8 +15,8 @@ import java.time.LocalDateTime;
import java.util.Date;
/**
* 反应堆机组
* 使用 Lombok
* 设施信息
*
*/
@Data

View File

@ -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;

View File

@ -13,8 +13,8 @@ import java.time.LocalDateTime;
import java.util.Date;
/**
* 设施信息实体类
* 对应数据库表结构
* 核试验信息
*
*/
@Data
@TableName("CONFIGURATION.GARDS_NUCLEAR_TESTING_PLANT")

View File

@ -12,8 +12,8 @@ import java.time.LocalDateTime;
import java.util.Date;
/**
* 核设施基础信息实体类
* 对应数据库表结构
* 研究型反应堆
* 同位素生产反应堆
*/
@Data
@TableName("CONFIGURATION.GARDS_RESEARCH_REACTORS")

View File

@ -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 {