修改核设施放射性排放记录信息

This commit is contained in:
duwenyuan 2025-12-18 14:52:49 +08:00
parent af58b31fa6
commit bffe9b9f5e

View File

@ -29,65 +29,72 @@ public class GardsNuclearReleaseRecords implements Serializable {
private Integer id; private Integer id;
/** /**
* 排放年份 * 设施名称
*/ */
@Excel(name = "排放年份", width = 20,height = 20,orderNum="0") @Excel(name = "设施名称", width = 20,height = 20,orderNum="0")
@TableField(value = "RELEASE_DATE") @TableField(value = "FACILITY_NAME")
private Integer releaseDate; private String facilityName;
/** /**
* 排放类型 * 纬度
*/ */
@Excel(name = "排放类型", width = 20,height = 20,orderNum="1") @Excel(name = "纬度", width = 20, height = 20, orderNum = "1")
@TableField(value = "RELEASE_TYPE") @TableField(value = "LATITUDE")
private String releaseType; private Double latitude;
/** /**
* 地点名称 * 经度
*/ */
@Excel(name = "地点名称", width = 20,height = 20,orderNum="2") @Excel(name = "经度", width = 20, height = 20, orderNum = "2")
@TableField(value = "SITE_NAME") @TableField(value = "LONGITUDE")
private String siteName; private Double longitude;
/** /**
* 装置/设施 * 开始时间
*/ */
@Excel(name = "装置/设施", width = 20,height = 20,orderNum="3") @Excel(name = "开始时间", format = "yyyy-MM-dd HH:mm:ss", width = 20, height = 20, orderNum = "3")
@TableField(value = "INSTALLATION") @TableField(value = "START_TIME", fill = FieldFill.INSERT_UPDATE)
private String installation; @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") @Excel(name = "结束时间", format = "yyyy-MM-dd HH:mm:ss", width = 20, height = 20, orderNum = "4")
@TableField(value = "NUCLIDE_TYPE") @TableField(value = "END_TIME", fill = FieldFill.INSERT_UPDATE)
private String nuclideType; @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") @TableField(value = "NUCLIDE")
private String nuclide; private String nuclide;
/** /**
* 活度/活动性 *释放量
*/ */
@Excel(name = "活度/活动性", width = 20,height = 20,orderNum="6") @Excel(name = "释放量", width = 20,height = 20,orderNum="6")
@TableField(value = "ACTIVITY") @TableField(value = "RELEASE_AMOUNT")
private String activity; 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") @TableField(value = "DATA_SOURCE")
private Integer dataSource; 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") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date moddate; private Date moddate;
} }