吴健
2024-11-22 226f411c28e7d16660c997fcc382a2218d1d9ca7
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
package com.billion.main.sc.domain;
 
import com.billion.common.annotation.Excel;
import com.billion.main.common.BaseEntity;
import lombok.Data;
 
/**
 * 参数采集配置对象 sc_collection_param_conf
 * 
 * @author HDY
 * @date 2024-11-21
 */
@Data
public class ScCollectionParamConf extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键id */
    private Long id;
 
    /** 产品编码 */
    @Excel(name = "产品编码")
    private String productCode;
 
    /** 产品型号 */
    @Excel(name = "产品型号")
    private String productType;
 
    /** 工位编码 */
    @Excel(name = "工位编码")
    private String locationCode;
 
    /** 参数编码 */
    @Excel(name = "参数编码")
    private String paramCode;
 
    /** 参数名称 */
    @Excel(name = "参数名称")
    private String paramName;
 
    /** 参数集编码 */
    @Excel(name = "参数集编码")
    private String paramSetCode;
 
    /** 参数集名称 */
    @Excel(name = "参数集名称")
    private String paramSetName;
 
    /** 采集地址 */
    @Excel(name = "采集地址")
    private String node;
 
    /** 采集类型(1物料追溯,2拧紧追溯,其他) */
    @Excel(name = "采集类型", readConverterExp = "1=物料追溯,2拧紧追溯,其他")
    private String type;
 
    /** 单位 */
    @Excel(name = "单位")
    private String unit;
 
    /** 上限值 */
    @Excel(name = "上限值")
    private String paramUpper;
 
    /** 下限值 */
    @Excel(name = "下限值")
    private String paramLower;
 
    /** 中心值 */
    @Excel(name = "中心值")
    private String paramCentral;
 
    /** 显示顺序 */
    @Excel(name = "显示顺序")
    private Integer orderNum;
 
    /** 是否订阅 */
    @Excel(name = "是否订阅")
    private String subscribe;
 
    /** 删除标志(0代表存在 1代表删除) */
    private String delFlag;
 
 
}