吴健
2024-11-22 9f7aa7e1624d35540f1a339e87f1fe87f6c86628
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
package com.billion.main.sc.domain;
 
import com.billion.common.annotation.Excel;
import com.billion.main.common.BaseEntity;
import lombok.Data;
 
/**
 * OPC交互配置对象 sc_opc_conf
 * 
 * @author HDY
 * @date 2024-11-20
 */
@Data
public class ScOpcConf extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键id */
    private Long id;
 
    /** 工位编码 */
    @Excel(name = "工位编码")
    private String locationCode;
 
    /** 工位名称 */
    @Excel(name = "工位名称")
    private String locationName;
 
    /** 地址 */
    @Excel(name = "地址")
    private String node;
 
    /** 采集类型 */
    @Excel(name = "采集类型")
    private String type;
 
    /** 是否订阅 */
    @Excel(name = "是否订阅")
    private String subscribe;
 
    /** 删除标志(0代表存在 1代表删除) */
    private String delFlag;
 
 
}