cl
2024-05-23 ba1a7a9ef126296e2798e313dc5b43f775a1123c
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.bs.collectionParamConf.model.result;
2
3 import com.baomidou.mybatisplus.annotation.TableField;
4 import lombok.Data;
ba1a7a 5 import org.apache.xmlbeans.impl.xb.xmlconfig.NamespaceList;
71e81e 6
7 import java.util.Date;
8 import java.io.Serializable;
9
10 /**
11  * <p>
12  * 采集参数配置
13  * </p>
14  *
15  * @author zrm
16  * @since 2023-02-11
17  */
18 @Data
19 public class CollectionParamConfResult implements Serializable {
20
21     private static final long serialVersionUID = 1L;
22
23
24     /**
25      * 主键id
26      */
27     private Long id;
28
29     /**
30      * 产品编码
31      */
32     private String productCode;
33
34     /**
35      * 参数编码
36      */
37     private String paramName;
38
39     /**
40      * 采集地址
41      */
42     private String gatherAddress;
43
44     /**
45      * 采集顺序
46      */
47     private String gatherSequence;
48
49     /**
50      * 参数编码
51      */
52     private String paramCode;
53
54     /**
55      * 产线编号
56      */
57     private String productionLine;
58
59     /**
60      * 工位编号
61      */
62     private String locationCode;
63
64     /**
65      * 设备编号
66      */
67     private String equipmentNo;
68
69     /**
70      * 数据类型
71      */
72     private String dataType;
73
74     /**
75      * 单位
76      */
77     private String unit;
78
79     /**
80      * 上限值
81      */
82     private String paramUpper;
83
84     /**
85      * 下限值
86      */
87     private String paramLower;
88
89     /**
90      * 中心值
91      */
92     private String paramCentral;
93
94     /**
95      * 预留字段1
96      */
97     private String spareField1;
98
99     /**
100      * 预留字段2
101      */
102     private String spareField2;
103
104     /**
105      * 备注
106      */
107     private String remarks;
108
109     /**
110      * 创建用户
111      */
112     private String createUser;
113
114     /**
115      * 创建时间
116      */
117     private Date createTime;
118
119     /**
120      * 更改用户
121      */
122     private String updateUser;
123
124     /**
125      * 更改时间
126      */
127     private Date updateTime;
128
ba1a7a 129     private NamespaceList.Member2.Item item;
71e81e 130
131 }