| | |
| | | package org.jeecg.modules.eam.entity; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | |
| | | @Excel(name = "型号") |
| | | private String model; |
| | | |
| | | // @Excel(name = "使用部门",dictTable = "sys_depart",dicCode = "id",dicText = "depart_name") |
| | | @Excel(name = "使用部门") |
| | | private String useId; |
| | | |
| | | // @Excel(name = "工区",dicCode = "id",dictTable = "mom_base_area",dicText = "name") |
| | | @Excel(name = "中心") |
| | | private String workCenterId; |
| | | |
| | | @Excel(name = "工区") |
| | | private String factoryModelId; |
| | | |
| | | // @Excel(name = "维护部门",dictTable = "sys_depart",dicCode = "id",dicText = "depart_name") |
| | | @Excel(name = "工段") |
| | | private String areaId; |
| | | |
| | | @Excel(name = "维护部门") |
| | | private String manageId; |
| | | |
| | | // @Excel(name = "维修班组",dictTable = "mom_base_team",dicCode = "id"2,dicText = "name") |
| | | @Excel(name = "维修班组") |
| | | private String teamId; |
| | | |
| | | // @Excel(name = "资产制造商",dicCode = "id",dictTable="mom_base_constructor",dicText="name") |
| | | @Excel(name = "资产制造商") |
| | | private String constructorId; |
| | | |
| | | @Excel(name = "ABC标识",dicCode = "ABC-standard-result") |
| | |
| | | |
| | | @Excel(name = "灭火器有效期") |
| | | private String fireExtinguisherValidityPeriod; |
| | | |
| | | @Excel(name = "操作系统",dicCode = "operation_flag") |
| | | private String operatingSystem; |
| | | |
| | | @Excel(name = "系统") |
| | | private String system; |
| | |
| | | @Excel(name = "出厂编号") |
| | | private String factoryNumber; |
| | | |
| | | @Excel(name = "资产的来源国家") |
| | | @Excel(name = "资产来源国家") |
| | | private String sourceCountry; |
| | | |
| | | @Excel(name = "安全配置") |
| | | private String securityConfiguration; |
| | | |
| | | @Excel(name = "规格") |
| | | @Excel(name = "设备规格") |
| | | private String specification; |
| | | |
| | | @Excel(name = "总功率") |
| | | private String gpo; |
| | | |
| | | @Excel(name = "质保开始日期",format = "yyyyMMdd") |
| | | private Date warrantyStart; |
| | | @Excel(name = "质保开始日期",format = "yyyy-MM-dd") |
| | | private java.util.Date warrantyStart; |
| | | |
| | | @Excel(name = "质保结束日期",format = "yyyyMMdd") |
| | | private Date warrantyEnd; |
| | | @Excel(name = "质保结束日期",format = "yyyy-MM-dd") |
| | | private java.util.Date warrantyEnd; |
| | | |
| | | @Excel(name = "下次技术状态鉴定时间", width = 20, format = "yyyyMMdd") |
| | | private Date nextTechnologyStatusQualificationTime; |
| | | @Excel(name = "下次技术状态鉴定时间", width = 20, format = "yyyy-MM-dd") |
| | | private java.util.Date nextTechnologyStatusQualificationTime; |
| | | |
| | | @Excel(name = "三保日期", format = "yyyy-MM-dd") |
| | | private java.util.Date thirdMaintenanceTime; |
| | | |
| | | @Excel(name = "技术状态鉴定日期", format = "yyyy-MM-dd") |
| | | private java.util.Date technologyStatusQualificationTime; |
| | | |
| | | @Excel(name = "创建人", width = 15) |
| | | private java.lang.String createBy; |
| | | |
| | | @Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private java.util.Date createTime; |
| | | |
| | | @Excel(name = "更新人", width = 15) |
| | | private java.lang.String updateBy; |
| | | |
| | | @Excel(name = "更新时间", width = 20, format = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private java.util.Date updateTime; |
| | | |
| | | } |