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
package com.qianwen.mdc.collect.entity.mgr;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.qianwen.core.mp.base.BaseEntity;
 
import io.swagger.annotations.ApiModelProperty;
 
 
/**
 * 工位采集数据点
 */
@TableName("workstation_datapoints")
public class WorkstationDatapoints  extends BaseEntity {
    private static final long serialVersionUID = 1;
    
    @ApiModelProperty("模板类型")
    private Integer type;
    
    @ApiModelProperty("点位配置(json数组)")
    private String dpConfig;
    
    /**
     * 工位id
     */
    private long workstationId;
   
    /**
     * IOT平台appId
     */
    private String appId;
    
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getDpConfig() {
        return dpConfig;
    }
 
    public void setDpConfig(String dpConfig) {
        this.dpConfig = dpConfig;
    }
 
    public long getWorkstationId() {
        return workstationId;
    }
 
    public void setWorkstationId(long workstationId) {
        this.workstationId = workstationId;
    }
 
    public String getAppId() {
        return appId;
    }
 
    public void setAppId(String appId) {
        this.appId = appId;
    }
 
    
}