hdy
4 天以前 51eb318f6df9ebc7d1ff47522e33b2ee7cea1ba8
提交 | 用户 | 时间
9d822f 1 package com.billion.main.da.domain;
A 2
3 import java.util.Date;
7933a5 4
A 5 import com.billion.common.core.domain.BaseEntity;
9d822f 6 import com.fasterxml.jackson.annotation.JsonFormat;
A 7 import lombok.Data;
8 import org.apache.commons.lang3.builder.ToStringBuilder;
9 import org.apache.commons.lang3.builder.ToStringStyle;
10 import com.billion.common.annotation.Excel;
11
12 /**
13  * 物料采集对象 da_material_collection
14  * 
15  * @author Billion-Yi
16  * @date 2024-11-22
17  */
18 @Data
19 public class DaMaterialCollection extends BaseEntity
20 {
21     private static final long serialVersionUID = 1L;
22
23     /** 主键id */
24     private Long id;
25
26     /** 总成序列号 */
27     @Excel(name = "总成序列号")
28     private String sfcCode;
29
30     /** 工位编码 */
31     @Excel(name = "工位编码")
32     private String locationCode;
33
34     /** 参数编码 */
35     @Excel(name = "参数编码")
36     private String paramCode;
37
38     /** 参数名称 */
39     @Excel(name = "参数名称")
40     private String paramName;
41
42     /** 参数值 */
43     @Excel(name = "参数值")
44     private String paramValue;
45
46     /** 采集时间 */
47     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
48     @Excel(name = "采集时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
49     private Date collectTime;
50
51
52 }