| | |
| | | /** |
| | | * 设备统一编号 |
| | | */ |
| | | @Excel(name = "设备编号", width = 15, orderNum = "1") |
| | | @Excel(name = "设备编号", width = 15, orderNum = "5") |
| | | @ApiModelProperty(value = "设备编号") |
| | | private String equipmentCode; |
| | | |
| | | |
| | | /** |
| | | * 设备名称 |
| | | */ |
| | | @Excel(name = "设备名称", width = 15, orderNum = "2") |
| | | @Excel(name = "设备名称", width = 15, orderNum = "4") |
| | | @ApiModelProperty(value = "设备名称") |
| | | private String equipmentName; |
| | | /** |
| | | * 使用部门 |
| | | */ |
| | | @Excel(name = "使用车间", width = 25, dictTable = "base_factory", dicText = "factory_name", dicCode = "id", orderNum = "9") |
| | | @ApiModelProperty(value = "使用部门") |
| | | @Excel(name = "所属产线", width = 25, dictTable = "base_factory", dicText = "factory_name", dicCode = "id", orderNum = "3") |
| | | @ApiModelProperty(value = "所属产线") |
| | | @Dict(dicCode = "base_factory, factory_name, id") |
| | | private String orgId; |
| | | /** |
| | |
| | | /** |
| | | * 设备型号 |
| | | */ |
| | | @Excel(name = "设备型号", width = 15, orderNum = "3") |
| | | @Excel(name = "设备型号", width = 15, orderNum = "5") |
| | | @ApiModelProperty(value = "设备型号") |
| | | private String equipmentModel; |
| | | /** |
| | |
| | | /** |
| | | * 出厂编号 |
| | | */ |
| | | @Excel(name = "出厂编号", width = 15, orderNum = "12") |
| | | @Excel(name = "出厂编号", width = 15, orderNum = "7") |
| | | @ApiModelProperty(value = "出厂编号") |
| | | private String factoryNumber; |
| | | /** |
| | | * 机床厂家 |
| | | * 生产厂家 |
| | | */ |
| | | @Excel(name = "机床厂家", width = 15, orderNum = "13") |
| | | @ApiModelProperty(value = "机床厂家") |
| | | @Excel(name = "生产厂家", width = 15, orderNum = "8") |
| | | @ApiModelProperty(value = "生产厂家") |
| | | private String manufacturingEnterprise; |
| | | /** |
| | | * 来源国家 |
| | | */ |
| | | @Excel(name = "来源国家", width = 25, orderNum = "14") |
| | | @Excel(name = "来源国家", width = 25) |
| | | @ApiModelProperty(value = "来源国家") |
| | | private String originCountry; |
| | | /** |
| | | * 设备供应商 |
| | | */ |
| | | @Excel(name = "设备供应商", width = 25, orderNum = "15") |
| | | @Excel(name = "设备供应商", width = 25) |
| | | @ApiModelProperty(value = "设备供应商") |
| | | private String supplier; |
| | | /** |
| | | * 出厂日期 |
| | | */ |
| | | @Excel(name = "出厂日期", width = 25, format = "yyyy/MM/dd", orderNum = "16") |
| | | @Excel(name = "出厂日期", width = 25, format = "yyyy/MM/dd") |
| | | @ApiModelProperty(value = "出厂日期") |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date leaveFactoryDate; |
| | | /** |
| | | * 验收日期 |
| | | * 进厂日期 |
| | | */ |
| | | @Excel(name = "投用日期", width = 25, format = "yyyy/MM/dd", orderNum = "17") |
| | | @ApiModelProperty(value = "验收日期") |
| | | |
| | | // @Excel(name = "进厂日期", width = 25, format = "yyyy.MM.dd", orderNum = "6") |
| | | @Excel(name = "进厂日期", width = 25, format = "yyyy.MM.dd", orderNum = "6") |
| | | @ApiModelProperty(value = "进厂日期") |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date acceptanceCheckDate; |
| | |
| | | /** |
| | | * 立项卡号 |
| | | */ |
| | | @Excel(name = "资产编号", width = 15, orderNum = "1") |
| | | @ApiModelProperty(value = "立项卡号") |
| | | private String cardNumber; |
| | | /** |