|
@@ -23,140 +23,145 @@ public class ExportSbInfoVO implements Serializable {
|
|
|
/**
|
|
|
* 主键
|
|
|
*/
|
|
|
- @Excel(name = "主键", orderNum = "1")
|
|
|
+ @Excel(name = "主键")
|
|
|
private String id;
|
|
|
/**
|
|
|
* 设备编号
|
|
|
*/
|
|
|
- @Excel(name = "设备编号(必填)", orderNum = "2")
|
|
|
+ @Excel(name = "设备编号(必填)")
|
|
|
private String no;
|
|
|
/**
|
|
|
* 设备位号
|
|
|
*/
|
|
|
- @Excel(name = "设备位号", orderNum = "3")
|
|
|
+ @Excel(name = "设备位号")
|
|
|
private String positionNo;
|
|
|
/**
|
|
|
* 设备名称
|
|
|
*/
|
|
|
- @Excel(name = "设备名称(必填)", orderNum = "4")
|
|
|
+ @Excel(name = "设备名称(必填)")
|
|
|
private String name;
|
|
|
/**
|
|
|
* 设备名称
|
|
|
*/
|
|
|
- @Excel(name = "设备型号(必填)", orderNum = "5")
|
|
|
+ @Excel(name = "设备型号(必填)")
|
|
|
private String model;
|
|
|
+ /**
|
|
|
+ * 设备位号
|
|
|
+ */
|
|
|
+ @Excel(name = "父位号")
|
|
|
+ private String ppNo;
|
|
|
/**
|
|
|
* 设备等级
|
|
|
*/
|
|
|
- @Excel(name = "设备等级(必填;1:A级;2:B级;3:C级)", orderNum = "6")
|
|
|
+ @Excel(name = "设备等级(必填;1:A级;2:B级;3:C级)")
|
|
|
private Integer level;
|
|
|
/**
|
|
|
* 设备原值
|
|
|
*/
|
|
|
- @Excel(name = "设备原值", orderNum = "7")
|
|
|
+ @Excel(name = "设备原值")
|
|
|
private Double initialValue;
|
|
|
/**
|
|
|
* 设备类别
|
|
|
*/
|
|
|
- @Excel(name = "设备类别(必填)", orderNum = "8")
|
|
|
+ @Excel(name = "设备类别(必填)")
|
|
|
private String typeName;
|
|
|
/**
|
|
|
* 自定义类型
|
|
|
*/
|
|
|
- @Excel(name = "自定义类型(必填;3:生产设备;4:计量设备;5:特种设备)", orderNum = "9")
|
|
|
+ @Excel(name = "自定义类型(必填;3:生产设备;4:计量设备;5:特种设备)")
|
|
|
private Integer useType;
|
|
|
/**
|
|
|
* 设备位置
|
|
|
*/
|
|
|
- @Excel(name = "设备位置", orderNum = "10")
|
|
|
+ @Excel(name = "设备位置")
|
|
|
private String positionName;
|
|
|
/**
|
|
|
* 使用位置
|
|
|
*/
|
|
|
- @Excel(name = "出厂编号", orderNum = "11")
|
|
|
+ @Excel(name = "出厂编号")
|
|
|
private String zzh;
|
|
|
/**
|
|
|
* 生产商
|
|
|
*/
|
|
|
- @Excel(name = "生产商", orderNum = "12")
|
|
|
+ @Excel(name = "生产商")
|
|
|
private String producerName;
|
|
|
/**
|
|
|
* 使用施工组名称
|
|
|
*/
|
|
|
- @Excel(name = "使用人", orderNum = "13")
|
|
|
+ @Excel(name = "使用人")
|
|
|
private String saveUserName;
|
|
|
/**
|
|
|
* 购置日期
|
|
|
*/
|
|
|
- @Excel(name = "购置日期", orderNum = "14")
|
|
|
+ @Excel(name = "购置日期")
|
|
|
private LocalDate buyDate;
|
|
|
/**
|
|
|
* 投用日期
|
|
|
*/
|
|
|
- @Excel(name = "投用日期", orderNum = "15")
|
|
|
+ @Excel(name = "投用日期")
|
|
|
private LocalDate startDate;
|
|
|
/**
|
|
|
* 状态
|
|
|
*/
|
|
|
- @Excel(name = "状态(必填;1在库;2使用中)", orderNum = "16")
|
|
|
+ @Excel(name = "状态(必填;1在库;2使用中)")
|
|
|
private Integer status;
|
|
|
/**
|
|
|
* 备注
|
|
|
*/
|
|
|
- @Excel(name = "备注", orderNum = "17")
|
|
|
+ @Excel(name = "备注")
|
|
|
private String remark;
|
|
|
/**
|
|
|
* 财务编码/固定资产编号
|
|
|
*/
|
|
|
- @Excel(name = "固定资产编号", orderNum = "18")
|
|
|
+ @Excel(name = "固定资产编号")
|
|
|
private String financingNo;
|
|
|
|
|
|
/**
|
|
|
* 固定资产
|
|
|
*/
|
|
|
- @Excel(name = "是否固定资产(必填;0否;1是)", orderNum = "19")
|
|
|
+ @Excel(name = "是否固定资产(必填;0否;1是)")
|
|
|
private Integer isFinancing;
|
|
|
|
|
|
/**
|
|
|
* 上次检定日期
|
|
|
*/
|
|
|
- @Excel(name = "上次检定日期", orderNum = "20")
|
|
|
+ @Excel(name = "上次检定日期")
|
|
|
private LocalDate checkDate;
|
|
|
|
|
|
/**
|
|
|
* 检定周期
|
|
|
*/
|
|
|
- @Excel(name = "检定周期(月)", orderNum = "21")
|
|
|
+ @Excel(name = "检定周期(月)")
|
|
|
private Integer checkPeriod;
|
|
|
|
|
|
/**
|
|
|
* 下次检定日期
|
|
|
*/
|
|
|
- @Excel(name = "下次检定日期", orderNum = "22")
|
|
|
+ @Excel(name = "下次检定日期")
|
|
|
private LocalDate nextCheckDate;
|
|
|
|
|
|
/**
|
|
|
* 预警天数
|
|
|
*/
|
|
|
- @Excel(name = "预警天数", orderNum = "23")
|
|
|
+ @Excel(name = "预警天数")
|
|
|
private Integer seatNumber;
|
|
|
|
|
|
/**
|
|
|
* 使用寿命
|
|
|
*/
|
|
|
- @Excel(name = "使用寿命(年)", orderNum = "24")
|
|
|
+ @Excel(name = "使用寿命(年)")
|
|
|
private double workYear;
|
|
|
|
|
|
/**
|
|
|
* 检定单位
|
|
|
*/
|
|
|
- @Excel(name = "检定单位", orderNum = "25")
|
|
|
+ @Excel(name = "检定单位")
|
|
|
private String dph;
|
|
|
|
|
|
/**
|
|
|
* 是否需要检定
|
|
|
*/
|
|
|
- @Excel(name = "是否需要检定(必填;0:否;1:是)", orderNum = "26")
|
|
|
+ @Excel(name = "是否需要检定(必填;0:否;1:是)")
|
|
|
private Integer isMeasure;
|
|
|
|
|
|
}
|