| | |
| | | package com.jcdm.main.da.passingStationCollection.domain; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.Date; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | |
| | | |
| | | /** 产品编号 */ |
| | | @Excel(name = "产品编号") |
| | | @ExcelProperty(value = "产品编号", index = 2) |
| | | private String productCode; |
| | | |
| | | /** 产线编号 */ |
| | | @Excel(name = "产线编号") |
| | | @ExcelProperty(value = "产线编号", index = 3) |
| | | private String productionLine; |
| | | |
| | | /** 工位编号 */ |
| | | @Excel(name = "工位编号") |
| | | @ExcelProperty(value = "工位编号", index = 4) |
| | | @ExcelProperty(value = "工位编号", index = 2) |
| | | private String locationCode; |
| | | |
| | | /** 设备编号 */ |
| | |
| | | @Excel(name = "入站时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ExcelProperty(value = "入站时间", index = 5) |
| | | @ExcelProperty(value = "入站时间", index = 3) |
| | | private Date inboundTime; |
| | | |
| | | /** 出站时间 */ |
| | |
| | | @Excel(name = "出站时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ExcelProperty(value = "出站时间", index = 6) |
| | | @ExcelProperty(value = "出站时间", index = 4) |
| | | private Date outboundTime; |
| | | |
| | | @TableField(exist = false) |
| | |
| | | |
| | | /** 出站是否合格 */ |
| | | @Excel(name = "出站是否合格") |
| | | @ExcelProperty(value = "是否合格", index = 7) |
| | | @ExcelProperty(value = "是否合格", index = 5) |
| | | private String outRsSign; |
| | | |
| | | /** 出站NG原因 */ |
| | | @Excel(name = "出站NG原因") |
| | | @ExcelProperty(value = "NG原因", index = 8) |
| | | private String outMsgSign; |
| | | |
| | | /** 采集时间 */ |
| | |
| | | @Excel(name = "采集时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ExcelProperty(value = "采集时间", index = 9) |
| | | @ExcelProperty(value = "采集时间", index = 6) |
| | | private Date collectionTime; |
| | | |
| | | /** 预留字段1 */ |
| | |
| | | |
| | | /** 节拍时间 */ |
| | | @Excel(name = "节拍时间") |
| | | @ExcelProperty(value = "节拍时间", index = 10) |
| | | private String beatTime; |
| | | |
| | | @TableField(exist = false) |
| | |
| | | |
| | | private Long[] ids; |
| | | |
| | | @TableField(exist = false) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate queryDate; |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | private String queryMonth; |
| | | public Long[] getIds() { |
| | | return ids; |
| | | } |