yangys
2024-11-02 f69073b835f1a0c66590130e1830edcdd75ebb8a
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
package com.qianwen.smartman.modules.smis.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.qianwen.core.mp.base.BaseEntity;
 
import io.swagger.annotations.ApiModelProperty;
 
/**
 * 采集设备类型,定义点位字段
 */
@TableName("collect_device_type")
public class CollectDeviceType extends BaseEntity {
    private static final long serialVersionUID = 1;
    @ApiModelProperty("类型名称")
    private String name;
    
    /**
     * 每个字段信息格式:{"prop":"dpName","isRequired":true,"label":"数据点名称","describe":"数据点名称,同一应用下的数据点名称不允许重复。"}
     */
    @ApiModelProperty("字段信息,json数组")
    private String dpHead;
 
    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;
    }
 
    
}