|
@@ -57,6 +57,13 @@ public class TbAssetInformation extends BaseEntity
|
|
|
@Excel(name = "资产分类编号")
|
|
|
private String categoryNumber;
|
|
|
|
|
|
+ /** 分类ID */
|
|
|
+ private Long categoryId;
|
|
|
+
|
|
|
+ /** 分类名称 */
|
|
|
+ @Excel(name = "资产分类名称(导出)")
|
|
|
+ private String categoryName;
|
|
|
+
|
|
|
/** 规格型号 */
|
|
|
@Excel(name = "规格型号")
|
|
|
private String specificationsModel;
|
|
@@ -73,10 +80,18 @@ public class TbAssetInformation extends BaseEntity
|
|
|
@Excel(name = "使用部门")
|
|
|
private String userDepartment;
|
|
|
|
|
|
+ /** 使用部门名称 */
|
|
|
+ @Excel(name = "使用部门名称(导出)")
|
|
|
+ private String userDepartmentName;
|
|
|
+
|
|
|
/** 管理部门 */
|
|
|
@Excel(name = "管理部门")
|
|
|
private String department;
|
|
|
|
|
|
+ /** 管理部门名称 */
|
|
|
+ @Excel(name = "管理部门名称(导出)")
|
|
|
+ private String departmentName;
|
|
|
+
|
|
|
/** 责任人 */
|
|
|
@Excel(name = "责任人")
|
|
|
private String responsiblePerson;
|
|
@@ -85,6 +100,15 @@ public class TbAssetInformation extends BaseEntity
|
|
|
@Excel(name = "所在位置编号")
|
|
|
private String locationNumber;
|
|
|
|
|
|
+ /** 位置ID */
|
|
|
+ private Long locationId;
|
|
|
+ /** 位置名称 */
|
|
|
+ @Excel(name = "所在位置名称(导出)")
|
|
|
+ private String locationName;
|
|
|
+ /** 位置标签 */
|
|
|
+ @Excel(name = "所在位置标签(导出)")
|
|
|
+ private String locationLabel;
|
|
|
+
|
|
|
/** 资产性质 */
|
|
|
@Excel(name = "资产性质")
|
|
|
private String property;
|
|
@@ -165,6 +189,10 @@ public class TbAssetInformation extends BaseEntity
|
|
|
@Excel(name = "所属公司")
|
|
|
private String corporation;
|
|
|
|
|
|
+ /** 使用公司名称 */
|
|
|
+ @Excel(name = "所属公司名称(导出)")
|
|
|
+ private String corporationName;
|
|
|
+
|
|
|
/** 记录状态,0:未提交,1:已提交 */
|
|
|
@Excel(name = "记录状态,0:未提交,1:已提交", width = 30)
|
|
|
private Long recordStatus;
|
|
@@ -196,28 +224,10 @@ public class TbAssetInformation extends BaseEntity
|
|
|
|
|
|
/** 开始使用日期 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "开始使用日期")
|
|
|
+ @Excel(name = "开始使用日期", width = 40, dateFormat = "yyyy-MM-dd")
|
|
|
private Date startDate;
|
|
|
|
|
|
/** 预留字段j */
|
|
|
// @Excel(name = "预留字段j")
|
|
|
private String reservedColumnJ;
|
|
|
-
|
|
|
- /** 位置ID */
|
|
|
- private Long locationId;
|
|
|
- /** 位置名称 */
|
|
|
- private String locationName;
|
|
|
- /** 位置标签 */
|
|
|
- private String locationLabel;
|
|
|
- /** 分类ID */
|
|
|
- private Long categoryId;
|
|
|
- /** 分类名称 */
|
|
|
- private String categoryName;
|
|
|
- /** 使用部门名称 */
|
|
|
- private String userDepartmentName;
|
|
|
- /** 管理部门名称 */
|
|
|
- private String departmentName;
|
|
|
- /** 使用公司名称 */
|
|
|
- private String corporationName;
|
|
|
-
|
|
|
}
|