提交 | 用户 | 时间
|
c9abcf
|
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 |
* OPC交互配置对象 sc_opc_conf |
|
9 |
* |
|
10 |
* @author HDY |
|
11 |
* @date 2024-11-20 |
|
12 |
*/ |
|
13 |
@Data |
|
14 |
public class ScOpcConf 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 locationCode; |
|
24 |
|
|
25 |
/** 工位名称 */ |
|
26 |
@Excel(name = "工位名称") |
|
27 |
private String locationName; |
|
28 |
|
|
29 |
/** 地址 */ |
|
30 |
@Excel(name = "地址") |
|
31 |
private String node; |
|
32 |
|
|
33 |
/** 采集类型 */ |
|
34 |
@Excel(name = "采集类型") |
|
35 |
private String type; |
|
36 |
|
|
37 |
/** 是否订阅 */ |
|
38 |
@Excel(name = "是否订阅") |
|
39 |
private String subscribe; |
|
40 |
|
|
41 |
/** 删除标志(0代表存在 1代表删除) */ |
|
42 |
private String delFlag; |
|
43 |
|
|
44 |
|
|
45 |
} |