package org.jeecg.modules.eam.vo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
@Data
|
@Accessors(chain = true)
|
@EqualsAndHashCode(callSuper = false)
|
public class EquipmentExportVo {
|
|
@Excel(name = "统一编码", width = 15)
|
private String num;
|
|
@Excel(name = "设备名称", width = 15)
|
private String name;
|
|
@Excel(name = "使用部门", width = 15)
|
private String useDepart;
|
|
@Excel(name = "维护部门", width = 15)
|
private String manageDepart;
|
|
@Excel(name = "中心", width = 15)
|
private String workCenter;
|
|
@Excel(name = "工区", width = 15)
|
private String factoryModel;
|
|
@Excel(name = "工段", width = 15)
|
private String area;
|
|
@Excel(name = "维修班组", width = 15)
|
private String teamName;
|
|
@Excel(name = "设备所属分类", width = 15)
|
private String equipmentCategoryName;
|
|
@Excel(name = "设备状态", width = 15)
|
private String equipmentStatus;
|
|
@Excel(name = "技术状态", width = 15)
|
private String technologyStatus;
|
|
@Excel(name = "ABC标识", width = 15)
|
private String abc;
|
|
@Excel(name = "关键设备标识", width = 15)
|
private String specificEquipment;
|
|
@Excel(name = "安全配置", width = 15)
|
private String securityConfiguration;
|
|
@Excel(name = "冷却系统", width = 15)
|
private String coolingSystem;
|
|
@Excel(name = "灭火器", width = 15)
|
private String fireExtinguisher;
|
|
@Excel(name = "灭火器有效期", width = 15)
|
private String fireExtinguisherValidityPeriod;
|
|
@Excel(name = "操作系统", width = 15)
|
private String operatingSystem;
|
|
@Excel(name = "系统", width = 15)
|
private String system;
|
|
@Excel(name = "设备端口", width = 15)
|
private String port;
|
|
@Excel(name = "坐标数量", width = 15)
|
private String coordinateNum;
|
|
@Excel(name = "重量", width = 15)
|
private String equipmentUda3;
|
|
@Excel(name = "重量计量单位", width = 15)
|
private String equipmentUda4;
|
|
@Excel(name = "功能位置", width = 15)
|
private String equipmentUda5;
|
|
@Excel(name = "安装位置", width = 15)
|
private String location;
|
|
@Excel(name = "出厂日期", width = 15)
|
private String leaveFactoryDate;
|
|
@Excel(name = "立项卡号", width = 15)
|
private String projectApprovalNo;
|
|
@Excel(name = "资金来源", width = 15)
|
private String fundSource;
|
|
@Excel(name = "验收日期", width = 15)
|
private String acceptanceCheckDate;
|
|
@Excel(name = "出厂编号", width = 15)
|
private String factoryNumber;
|
|
@Excel(name = "资产制造商", width = 15)
|
private String constructor;
|
|
@Excel(name = "资产来源国家", width = 15)
|
private String sourceCountry;
|
|
@Excel(name = "型号", width = 15)
|
private String equipmentModel;
|
|
@Excel(name = "设备规格", width = 15)
|
private String equpmentSspecification;
|
|
@Excel(name = "总功率", width = 15)
|
private String gpo;
|
|
@Excel(name = "质保开始日期", width = 15)
|
private String warrantyStart;
|
|
@Excel(name = "质保结束日期", width = 15)
|
private String warrantyEnd;
|
|
@Excel(name = "资产状态", width = 15)
|
private String propertyStatus;
|
|
@Excel(name = "三保日期", width = 20)
|
private String thirdMaintenanceTime;
|
|
@Excel(name = "技术状态鉴定日期", width = 20)
|
private String nextTechnologyStatusQualificationTime;
|
|
@Excel(name = "创建人", width = 15)
|
private String createBy;
|
|
@Excel(name = "创建时间", width = 15)
|
private String createTime;
|
|
@Excel(name = "更新人", width = 15)
|
private String updateBy;
|
|
@Excel(name = "更新时间", width = 15)
|
private String updateTime;
|
|
}
|