|
@@ -43,7 +43,7 @@ public class TbAssetInformation extends BaseEntity
|
|
|
private String number;
|
|
|
|
|
|
/** 图片路径 */
|
|
|
- //@Excel(name = "图片路径")
|
|
|
+// @Excel(name = "图片路径")
|
|
|
private String imageUrl;
|
|
|
|
|
|
/** 资产分类编号 */
|
|
@@ -51,15 +51,15 @@ public class TbAssetInformation extends BaseEntity
|
|
|
private String categoryNumber;
|
|
|
|
|
|
/** 规格型号 */
|
|
|
- //@Excel(name = "规格型号")
|
|
|
+ @Excel(name = "规格型号")
|
|
|
private String specificationsModel;
|
|
|
|
|
|
/** ABC分类 */
|
|
|
- //@Excel(name = "ABC分类")
|
|
|
+ @Excel(name = "ABC分类")
|
|
|
private String abcCategory;
|
|
|
|
|
|
/** 管理状态,0:闲置 */
|
|
|
- //@Excel(name = "管理状态,0:闲置")
|
|
|
+ @Excel(name = "管理状态,0:闲置")
|
|
|
private Long manageStatus;
|
|
|
|
|
|
/** 使用部门 */
|
|
@@ -71,7 +71,7 @@ public class TbAssetInformation extends BaseEntity
|
|
|
private String department;
|
|
|
|
|
|
/** 责任人 */
|
|
|
- //@Excel(name = "责任人")
|
|
|
+ @Excel(name = "责任人")
|
|
|
private String responsiblePerson;
|
|
|
|
|
|
/** 所在位置编号 */
|
|
@@ -79,79 +79,79 @@ public class TbAssetInformation extends BaseEntity
|
|
|
private String locationNumber;
|
|
|
|
|
|
/** 资产性质 */
|
|
|
- //@Excel(name = "资产性质")
|
|
|
+ @Excel(name = "资产性质")
|
|
|
private String property;
|
|
|
|
|
|
/** 购置日期 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- //@Excel(name = "购置日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @Excel(name = "购置日期", width = 40, dateFormat = "yyyy-MM-dd")
|
|
|
private Date purchaseDate;
|
|
|
|
|
|
/** 启用日期 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- //@Excel(name = "启用日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @Excel(name = "启用日期", width = 40, dateFormat = "yyyy-MM-dd")
|
|
|
private Date commissioningDate;
|
|
|
|
|
|
/** 原值(元) */
|
|
|
- //@Excel(name = "原值", readConverterExp = "元=")
|
|
|
+ @Excel(name = "原值", readConverterExp = "元=")
|
|
|
private Double originalValue;
|
|
|
|
|
|
/** 使用年限 */
|
|
|
- // @Excel(name = "使用年限")
|
|
|
+ @Excel(name = "使用年限")
|
|
|
private Long durableYears;
|
|
|
|
|
|
/** 净值(元) */
|
|
|
- //@Excel(name = "净值", readConverterExp = "元=")
|
|
|
+ @Excel(name = "净值", readConverterExp = "元=")
|
|
|
private Double netValue;
|
|
|
|
|
|
/** 残值(元) */
|
|
|
- // @Excel(name = "残值", readConverterExp = "元=")
|
|
|
+ @Excel(name = "残值", readConverterExp = "元=")
|
|
|
private Double residualValue;
|
|
|
|
|
|
/** 累计折旧(元) */
|
|
|
- // @Excel(name = "累计折旧", readConverterExp = "元=")
|
|
|
+ @Excel(name = "累计折旧", readConverterExp = "元=")
|
|
|
private Double accumulatedDepreciation;
|
|
|
|
|
|
/** 最近折旧日期 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- //@Excel(name = "最近折旧日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @Excel(name = "最近折旧日期", width = 40, dateFormat = "yyyy-MM-dd")
|
|
|
private Date lastDepreciationDate;
|
|
|
|
|
|
/** 折旧方式,0:其他 */
|
|
|
- //@Excel(name = "折旧方式,0:其他")
|
|
|
+ @Excel(name = "折旧方式,0:其他", width = 26)
|
|
|
private Long depreciationMethod;
|
|
|
|
|
|
/** 合同编号 */
|
|
|
- //@Excel(name = "合同编号")
|
|
|
+ @Excel(name = "合同编号")
|
|
|
private String contractNumber;
|
|
|
|
|
|
/** 出厂编号 */
|
|
|
- // @Excel(name = "出厂编号")
|
|
|
+ @Excel(name = "出厂编号")
|
|
|
private String factoryNumber;
|
|
|
|
|
|
/** 制造商 */
|
|
|
- //@Excel(name = "制造商")
|
|
|
+ @Excel(name = "制造商")
|
|
|
private String manufacturer;
|
|
|
|
|
|
/** 供应商 */
|
|
|
- // @Excel(name = "供应商")
|
|
|
+ @Excel(name = "供应商")
|
|
|
private String supplier;
|
|
|
|
|
|
/** 资产用途 */
|
|
|
- // @Excel(name = "资产用途")
|
|
|
+ @Excel(name = "资产用途")
|
|
|
private String purpose;
|
|
|
|
|
|
/** 维保到期日期 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- // @Excel(name = "维保到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @Excel(name = "维保到期日期", width = 40, dateFormat = "yyyy-MM-dd")
|
|
|
private Date maintenanceDate;
|
|
|
|
|
|
/** 维修电话 */
|
|
|
- // @Excel(name = "维修电话")
|
|
|
+ @Excel(name = "维修电话")
|
|
|
private String maintenanceTel;
|
|
|
|
|
|
/** 维修人员 */
|
|
|
- // @Excel(name = "维修人员")
|
|
|
+ @Excel(name = "维修人员")
|
|
|
private String maintenanceUser;
|
|
|
|
|
|
/** 所属公司 */
|
|
@@ -159,15 +159,15 @@ public class TbAssetInformation extends BaseEntity
|
|
|
private String corporation;
|
|
|
|
|
|
/** 记录状态,0:未提交,1:已提交 */
|
|
|
- // @Excel(name = "记录状态,0:未提交,1:已提交")
|
|
|
+ @Excel(name = "记录状态,0:未提交,1:已提交", width = 30)
|
|
|
private Long recordStatus;
|
|
|
|
|
|
- /** 预留字段a */
|
|
|
- // @Excel(name = "是否白名单")
|
|
|
+ /** 是否白名单 */
|
|
|
+ @Excel(name = "是否白名单,Y:是,N:否", width = 30)
|
|
|
private String isWhitelist;
|
|
|
|
|
|
/** 预留字段b */
|
|
|
- // @Excel(name = "预留字段b")
|
|
|
+// @Excel(name = "预留字段b")
|
|
|
private String reservedColumnB;
|
|
|
|
|
|
/** 预留字段c */
|