春风项目四线(合箱线、总装线)
yyt
2024-02-21 220f7b818bb9399391830fbbb9fb2028a21b938f
jcdm-main/src/main/java/com/jcdm/main/da/paramCollection/domain/DaParamCollection.java
@@ -1,11 +1,19 @@
package com.jcdm.main.da.paramCollection.domain;
import java.util.Date;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.HeadFontStyle;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.jcdm.common.annotation.Excel;
import com.jcdm.common.core.domain.BaseEntity;
import org.springframework.format.annotation.DateTimeFormat;
/**
 * 设备产品过程参数采集对象 da_param_collection
@@ -13,6 +21,11 @@
 * @author yyt
 * @date 2023-12-13
 */
@Data
@ExcelIgnoreUnannotated
@ColumnWidth(16)
@HeadRowHeight(14)
@HeadFontStyle(fontHeightInPoints = 11)
public class DaParamCollection extends BaseEntity
{
    private static final long serialVersionUID = 1L;
@@ -24,8 +37,11 @@
    @Excel(name = "工单编号")
    private String workOrderNo;
    private String repairFlag;
    /** 总成序列号 */
    @Excel(name = "总成序列号")
    @Excel(name = "箱体编码")
    @ExcelProperty(value = "箱体编码", index = 0)
    private String sfcCode;
    /** 产品编号 */
@@ -38,6 +54,7 @@
    /** 工位编号 */
    @Excel(name = "工位编号")
    @ExcelProperty(value = "工位", index = 1)
    private String locationCode;
    /** 设备编号 */
@@ -50,6 +67,7 @@
    /** 参数值 */
    @Excel(name = "参数值")
    @ExcelProperty(value = "参数值", index = 3)
    private String paramValue;
    /** 参数上限 */
@@ -66,6 +84,9 @@
    /** 采集时间 */
    @Excel(name = "采集时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ExcelProperty(value = "采集时间", index = 5)
    private Date collectionTime;
    /** 预留字段1 */
@@ -86,10 +107,12 @@
    /** 参数名称 */
    @Excel(name = "参数名称")
    @ExcelProperty(value = "参数名称", index = 2)
    private String paramName;
    /** 单位 */
    @Excel(name = "单位")
    @ExcelProperty(value = "单位", index = 4)
    private String unit;
    /** 类型 */