| | |
| | | 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 |
| | |
| | | * @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; |
| | |
| | | @Excel(name = "工单编号") |
| | | private String workOrderNo; |
| | | |
| | | private String repairFlag; |
| | | |
| | | /** 总成序列号 */ |
| | | @Excel(name = "总成序列号") |
| | | @Excel(name = "箱体编码") |
| | | @ExcelProperty(value = "箱体编码", index = 0) |
| | | private String sfcCode; |
| | | |
| | | /** 产品编号 */ |
| | |
| | | |
| | | /** 工位编号 */ |
| | | @Excel(name = "工位编号") |
| | | @ExcelProperty(value = "工位", index = 1) |
| | | private String locationCode; |
| | | |
| | | /** 设备编号 */ |
| | |
| | | |
| | | /** 参数值 */ |
| | | @Excel(name = "参数值") |
| | | @ExcelProperty(value = "参数值", index = 3) |
| | | private String paramValue; |
| | | |
| | | /** 参数上限 */ |
| | |
| | | |
| | | /** 采集时间 */ |
| | | @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 */ |
| | |
| | | |
| | | /** 参数名称 */ |
| | | @Excel(name = "参数名称") |
| | | @ExcelProperty(value = "参数名称", index = 2) |
| | | private String paramName; |
| | | |
| | | /** 单位 */ |
| | | @Excel(name = "单位") |
| | | @ExcelProperty(value = "单位", index = 4) |
| | | private String unit; |
| | | |
| | | /** 类型 */ |
| | | @Excel(name = "类型") |
| | | private String type; |
| | | |
| | | private String[] dateConditions; |
| | | |
| | | private String startTime; |
| | | |
| | | private String endTime; |
| | | |
| | | public String[] getDateConditions() { |
| | | return dateConditions; |
| | | } |
| | | |
| | | public void setDateConditions(String[] dateConditions) { |
| | | this.dateConditions = dateConditions; |
| | | } |
| | | |
| | | public String getStartTime() {return startTime;} |
| | | |
| | | public void setStartTime(String startTime) { |
| | | this.startTime = startTime; |
| | | } |
| | | |
| | | public String getEndTime() { |
| | | return endTime; |
| | | } |
| | | |
| | | public void setEndTime(String endTime) { |
| | | this.endTime = endTime; |
| | | } |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |