Compare commits

..

No commits in common. "1a53e4f1c69102af502b9ea60f640d75b6e235c8" and "e667a04fdb0519d74019daf341238d06b8709a82" have entirely different histories.

View File

@ -29,72 +29,65 @@ 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 = "FACILITY_NAME") @TableField(value = "RELEASE_DATE")
private String facilityName; private Integer releaseDate;
/** /**
* 纬度 * 排放类型
*/ */
@Excel(name = "纬度", width = 20, height = 20, orderNum = "1") @Excel(name = "排放类型", width = 20,height = 20,orderNum="1")
@TableField(value = "LATITUDE") @TableField(value = "RELEASE_TYPE")
private Double latitude; private String releaseType;
/** /**
* 经度 * 地点名称
*/ */
@Excel(name = "经度", width = 20, height = 20, orderNum = "2") @Excel(name = "地点名称", width = 20,height = 20,orderNum="2")
@TableField(value = "LONGITUDE") @TableField(value = "SITE_NAME")
private Double longitude; private String siteName;
/** /**
* 开始时间 * 装置/设施
*/ */
@Excel(name = "开始时间", format = "yyyy-MM-dd HH:mm:ss", width = 20, height = 20, orderNum = "3") @Excel(name = "装置/设施", width = 20,height = 20,orderNum="3")
@TableField(value = "START_TIME", fill = FieldFill.INSERT_UPDATE) @TableField(value = "INSTALLATION")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private String installation;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date startTime;
/**
* 结束时间
*/
@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="4")
@TableField(value = "NUCLIDE_TYPE")
private String nuclideType;
/** /**
* 具体核素 * 具体核素
*/ */
@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 = "RELEASE_AMOUNT") @TableField(value = "ACTIVITY")
private String releaseAmount; private String activity;
/** /**
* 物质状态 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;
/** /**
* 修改时间 * 修改时间
@ -103,6 +96,4 @@ 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;
} }