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