春风项目四线(合箱线、总装线)
wujian
2024-10-23 2c65c31aceb16c1d06c692266e3fb555ecafdfb5
jcdm-main/src/main/java/com/jcdm/main/da/passingStationCollection/domain/DaPassingStationCollection.java
@@ -1,5 +1,6 @@
package com.jcdm.main.da.passingStationCollection.domain;
import java.time.LocalDate;
import java.util.Date;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
@@ -51,17 +52,15 @@
    /** 产品编号 */
    @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;
    /** 设备编号 */
@@ -73,7 +72,7 @@
    @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;
    /** 出站时间 */
@@ -81,7 +80,7 @@
    @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)
@@ -100,12 +99,11 @@
    /** 出站是否合格 */
    @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;
    /** 采集时间 */
@@ -113,7 +111,7 @@
    @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 */
@@ -130,7 +128,6 @@
    /** 节拍时间 */
    @Excel(name = "节拍时间")
    @ExcelProperty(value = "节拍时间", index = 10)
    private String beatTime;
    @TableField(exist = false)
@@ -138,6 +135,14 @@
    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;
    }