吴健
2024-11-16 99e00ff4a4542e5fb3378e2d8c18e0eeabc0bb29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
 
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.StringSerializer;
import lombok.Data;
 
/**
 * 参数采集配置
 * @TableName sc_collection_param_conf
 */
@TableName(value ="sc_collection_param_conf")
@Data
public class ScCollectionParamConf implements Serializable {
    /**
     * 主键id
     */
    @TableId(type = IdType.AUTO)
    @JsonSerialize(using = StringSerializer.class)
    private Long id;
 
    /**
     * 产品编码
     */
    private String productCode;
 
    /**
     * 产品型号
     */
    private String productType;
 
    /**
     * 工位编码
     */
    private String locationCode;
 
    /**
     * 参数编码
     */
    private String paramCode;
 
    /**
     * 参数名称
     */
    private String paramName;
 
    /**
     * 参数集编码
     */
    private String paramSetCode;
 
    /**
     * 参数集名称
     */
    private String paramSetName;
 
    /**
     * 采集地址
     */
    private String node;
 
    /**
     * 采集类型(1物料追溯,2拧紧追溯,其他)
     */
    private String type;
 
    /**
     * 单位
     */
    private String unit;
 
    /**
     * 上限值
     */
    private String paramUpper;
 
    /**
     * 下限值
     */
    private String paramLower;
 
    /**
     * 中心值
     */
    private String paramCentral;
 
    /**
     * 显示顺序
     */
    private Integer orderNum;
 
    /**
     * 是否订阅
     */
    private String subscribe;
 
    /**
     * 删除标志(0代表存在 1代表删除)
     */
    private String delFlag;
 
    /**
     * 创建者
     */
    private String createBy;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
    /**
     * 更新者
     */
    private String updateBy;
 
    /**
     * 更新时间
     */
    private Date updateTime;
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
}