admin
2024-11-22 20c287a2d82d0e28a3f5ec6e6235a95b21f48907
提交 | 用户 | 时间
4d458e 1 package com.billion.main.da.domain;
A 2
3 import java.util.Date;
5773fa 4
A 5 import com.baomidou.mybatisplus.annotation.TableField;
4d458e 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 import com.billion.main.common.BaseEntity;
12
13 /**
14  * 参数采集对象 da_param_collection
15  * 
16  * @author Billion-Yi
17  * @date 2024-11-20
18  */
19 @Data
20 public class DaParamCollection extends BaseEntity
21 {
22     private static final long serialVersionUID = 1L;
23
24     /** 主键id */
25     private Long id;
26
27     /** 总成序列号 */
28     @Excel(name = "总成序列号")
29     private String sfcCode;
30
31     /** 工位编码 */
32     @Excel(name = "工位编码")
33     private String locationCode;
34
35     /** 参数编码 */
36     @Excel(name = "参数编码")
37     private String paramCode;
38
39     /** 参数名称 */
40     @Excel(name = "参数名称")
41     private String paramName;
42
43     /** 参数值 */
44     @Excel(name = "参数值")
45     private String paramValue;
46
47     /** 采集时间 */
60e1c1 48     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
A 49     @Excel(name = "采集时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
4d458e 50     private Date collectTime;
A 51
5773fa 52     @TableField(exist = false)
A 53     private String[] timeQuery;
54
20c287 55     @TableField(exist = false)
A 56     private String startTime;
57
58     @TableField(exist = false)
59     private String stopTime;
60
4d458e 61
A 62 }