yangys
2024-10-30 c27b939fa5fa6ce4d712f7e9ced2ad811d69d5ec
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
package com.qianwen.smartman.modules.smis.vo;
 
import io.swagger.annotations.ApiModelProperty;
 
/**
 * 采集设备类型,定义点位字段
 */
public class CollectDeviceTypeVO{
    private long id;
    @ApiModelProperty("类型名称")
    private String name;
    
    /**
     * 每个字段信息格式:{"prop":"dpName","isRequired":true,"label":"数据点名称","describe":"数据点名称,同一应用下的数据点名称不允许重复。"}
     */
    @ApiModelProperty("字段信息,json数组")
    private String dpHead;
 
    @ApiModelProperty("全部字段信息,json数组")
    private String dpHeadFull;
    
    
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getDpHead() {
        return dpHead;
    }
 
    public void setDpHead(String dpHead) {
        this.dpHead = dpHead;
    }
 
    public String getDpHeadFull() {
        return dpHeadFull;
    }
 
    public void setDpHeadFull(String dpHeadFull) {
        this.dpHeadFull = dpHeadFull;
    }
 
    
}