|
@@ -25,35 +25,98 @@ public class TSpecdevDt extends BaseEntity
|
|
|
private Long id;
|
|
|
|
|
|
/** 装置名称 */
|
|
|
- @Excel(name = "装置名称")
|
|
|
+ @Excel(name = "装置")
|
|
|
private String plantCode;
|
|
|
|
|
|
/** 单元 */
|
|
|
- @Excel(name = "单元")
|
|
|
+ //@Excel(name = "单元")
|
|
|
private String unit;
|
|
|
|
|
|
+ /** 档案号 */
|
|
|
+ @Excel(name = "档案号")
|
|
|
+ private String docno;
|
|
|
+
|
|
|
/** 设备名称 */
|
|
|
- @Excel(name = "设备名称")
|
|
|
+ @Excel(name = "名称")
|
|
|
private String devname;
|
|
|
|
|
|
+ /** 注册代码 */
|
|
|
+ @Excel(name = "注册编号")
|
|
|
+ private String regno;
|
|
|
+
|
|
|
+ /** 型号 */
|
|
|
+ @Excel(name = "型号")
|
|
|
+ private String model;
|
|
|
+
|
|
|
+ /** 状态 */
|
|
|
+ @Excel(name = "状态", dictType = "spec_dev_status")
|
|
|
+ private Long status;
|
|
|
+
|
|
|
+ /** 审核状态 */
|
|
|
+ //@Excel(name = "审核状态", dictType = "spec_approve_status")
|
|
|
+ private Long approveStatus;
|
|
|
+
|
|
|
+ /** 额定载重 */
|
|
|
+ @Excel(name = "额定载重量(kg)")
|
|
|
+ private String capacity;
|
|
|
+
|
|
|
+ /** 层站数 */
|
|
|
+ @Excel(name = "层站数")
|
|
|
+ private String floor;
|
|
|
+
|
|
|
+ /** 制造单位 */
|
|
|
+ @Excel(name = "制造单位")
|
|
|
+ private String createUnit;
|
|
|
+
|
|
|
+ /** 使用地点 */
|
|
|
+ @Excel(name = "使用地点")
|
|
|
+ private String location;
|
|
|
+
|
|
|
+ /** 维保承包商 */
|
|
|
+ @Excel(name = "维保承包商")
|
|
|
+ private String maintContractor;
|
|
|
+
|
|
|
+ /** 初检日期 */
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
|
|
+ @Excel(name = "初检日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ private Date firstWarnDate;
|
|
|
+
|
|
|
+ /** 检验日期 */
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
|
|
+ @Excel(name = "检验日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ private Date warnDate;
|
|
|
+
|
|
|
+ /** 检验单位 */
|
|
|
+ @Excel(name = "检验单位")
|
|
|
+ private String checkUnit;
|
|
|
+
|
|
|
+ /** 报告编号 */
|
|
|
+ @Excel(name = "报告编号")
|
|
|
+ private String reportNo;
|
|
|
+
|
|
|
+ /** 下次年检时间 */
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
|
|
+ @Excel(name = "下次检验日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ private Date nextWarnDate;
|
|
|
+
|
|
|
+ /** 备注 */
|
|
|
+ @Excel(name = "备注")
|
|
|
+ private String remarks;
|
|
|
+
|
|
|
/** 设备位号 */
|
|
|
- @Excel(name = "设备位号")
|
|
|
+ //@Excel(name = "设备位号")
|
|
|
private String devno;
|
|
|
|
|
|
/** 创建日期 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
|
|
- @Excel(name = "创建日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ //@Excel(name = "创建日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
private Date createdate;
|
|
|
|
|
|
/** 提交日期 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
|
|
- @Excel(name = "投用日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ //@Excel(name = "投用日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
private Date submitdate;
|
|
|
|
|
|
- /** 状态 */
|
|
|
- @Excel(name = "状态", dictType = "spec_dev_status")
|
|
|
- private Long status;
|
|
|
-
|
|
|
/** 状态 0 :正常 ;-1:删除 */
|
|
|
private Long delFlag;
|
|
|
|
|
@@ -70,99 +133,36 @@ public class TSpecdevDt extends BaseEntity
|
|
|
private Date updaterDate;
|
|
|
|
|
|
/** 部门编号 */
|
|
|
- @Excel(name = "部门编号")
|
|
|
+ //@Excel(name = "部门编号")
|
|
|
private Long deptId;
|
|
|
|
|
|
- /** 备注 */
|
|
|
- //@Excel(name = "备注")
|
|
|
- private String remarks;
|
|
|
-
|
|
|
- /** 审核状态 */
|
|
|
- //@Excel(name = "审核状态", dictType = "spec_approve_status")
|
|
|
- private Long approveStatus;
|
|
|
-
|
|
|
- /** 注册代码 */
|
|
|
- @Excel(name = "注册代码")
|
|
|
- private String regno;
|
|
|
-
|
|
|
/** 使用证编号 */
|
|
|
- @Excel(name = "使用证编号")
|
|
|
+ //@Excel(name = "使用证编号")
|
|
|
private String useno;
|
|
|
|
|
|
- /** 检验日期 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
|
|
- @Excel(name = "检验日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
- private Date warnDate;
|
|
|
-
|
|
|
/** 检测周期 */
|
|
|
private Long warnCycle;
|
|
|
|
|
|
- /** 下次年检时间 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
|
|
- @Excel(name = "下次年检时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
- private Date nextWarnDate;
|
|
|
-
|
|
|
/** 预警标识 */
|
|
|
- @Excel(name = "预警标识")
|
|
|
+ //@Excel(name = "预警标识")
|
|
|
private Long warnFlag;
|
|
|
|
|
|
- /** 型号 */
|
|
|
- @Excel(name = "型号")
|
|
|
- private String model;
|
|
|
-
|
|
|
- /** 额定载重 */
|
|
|
- @Excel(name = "额定载重")
|
|
|
- private String capacity;
|
|
|
-
|
|
|
- /** 层站数 */
|
|
|
- @Excel(name = "层站数")
|
|
|
- private String floor;
|
|
|
-
|
|
|
- /** 制造单位 */
|
|
|
- @Excel(name = "制造单位")
|
|
|
- private String createUnit;
|
|
|
-
|
|
|
- /** 维保承包商 */
|
|
|
- @Excel(name = "维保承包商")
|
|
|
- private String maintContractor;
|
|
|
-
|
|
|
- /** 使用地点 */
|
|
|
- @Excel(name = "使用地点")
|
|
|
- private String location;
|
|
|
-
|
|
|
/** 检测策略 */
|
|
|
- @Excel(name = "检测策略")
|
|
|
+ //@Excel(name = "检测策略")
|
|
|
private String checkStrategy;
|
|
|
|
|
|
- /** 初检日期 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
|
|
- @Excel(name = "初检日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
- private Date firstWarnDate;
|
|
|
-
|
|
|
- /** 检验单位 */
|
|
|
- @Excel(name = "检验单位")
|
|
|
- private String checkUnit;
|
|
|
-
|
|
|
- /** 档案号 */
|
|
|
- @Excel(name = "档案号")
|
|
|
- private String docno;
|
|
|
-
|
|
|
/** 最新申请时间 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
|
|
- @Excel(name = "最新申请时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ //@Excel(name = "最新申请时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
private Date approveTime;
|
|
|
|
|
|
/** 状态修改时间 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
|
|
|
- @Excel(name = "状态修改时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ //@Excel(name = "状态修改时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
private Date changeTime;
|
|
|
|
|
|
- /** 报告编号 */
|
|
|
- @Excel(name = "报告编号")
|
|
|
- private String reportNo;
|
|
|
-
|
|
|
/** 部门名称 */
|
|
|
- @Excel(name = "部门名称")
|
|
|
+ //@Excel(name = "部门名称")
|
|
|
@TableField(exist = false)
|
|
|
private String deptName;
|
|
|
|