admin
2024-11-27 7933a59b8b8a97a6e7ad96fee1e4eb55222cde16
提交 | 用户 | 时间
04f79e 1 package com.billion.main.sc.domain;
H 2
3 import com.billion.common.annotation.Excel;
4 import com.billion.main.common.BaseEntity;
5 import lombok.Data;
6
7 /**
8  * 参数采集配置对象 sc_collection_param_conf
9  * 
10  * @author HDY
11  * @date 2024-11-21
12  */
13 @Data
14 public class ScCollectionParamConf extends BaseEntity
15 {
16     private static final long serialVersionUID = 1L;
17
18     /** 主键id */
19     private Long id;
20
21     /** 产品编码 */
22     @Excel(name = "产品编码")
23     private String productCode;
24
25     /** 产品型号 */
26     @Excel(name = "产品型号")
27     private String productType;
28
29     /** 工位编码 */
30     @Excel(name = "工位编码")
31     private String locationCode;
32
33     /** 参数编码 */
34     @Excel(name = "参数编码")
35     private String paramCode;
36
37     /** 参数名称 */
38     @Excel(name = "参数名称")
39     private String paramName;
40
41     /** 参数集编码 */
42     @Excel(name = "参数集编码")
43     private String paramSetCode;
44
45     /** 参数集名称 */
46     @Excel(name = "参数集名称")
47     private String paramSetName;
48
49     /** 采集地址 */
50     @Excel(name = "采集地址")
51     private String node;
52
53     /** 采集类型(1物料追溯,2拧紧追溯,其他) */
54     @Excel(name = "采集类型", readConverterExp = "1=物料追溯,2拧紧追溯,其他")
55     private String type;
56
57     /** 单位 */
58     @Excel(name = "单位")
59     private String unit;
60
61     /** 上限值 */
62     @Excel(name = "上限值")
63     private String paramUpper;
64
65     /** 下限值 */
66     @Excel(name = "下限值")
67     private String paramLower;
68
69     /** 中心值 */
70     @Excel(name = "中心值")
71     private String paramCentral;
72
73     /** 显示顺序 */
74     @Excel(name = "显示顺序")
75     private Integer orderNum;
76
77     /** 是否订阅 */
78     @Excel(name = "是否订阅")
79     private String subscribe;
80
81     /** 删除标志(0代表存在 1代表删除) */
82     private String delFlag;
83
84
85 }