wangmengzhao
2023-12-13 d8228730095cdcaccb40dd2dc290fc44779e340a
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
66
67
68
69
70
71
72
73
package com.ruoyi.iot.model.ThingsModels;
 
import com.alibaba.fastjson.JSONObject;
 
 
/**
 * 产品分类的Id和名称输出
 *
 * @author kerwincui
 * @date 2021-12-16
 */
public class PropertyDto {
    /**
     * 物模型唯一标识符
     */
    private String id;
    /**
     * 物模型名称
     */
    private String name;
    /**
     * 是否首页显示(0-否,1-是)
     */
    private Integer isTop;
    /**
     * 是否实时监测(0-否,1-是)
     */
    private Integer isMonitor;
    /**
     * 数据定义
     */
    private JSONObject datatype;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Integer getIsTop() {
        return isTop;
    }
 
    public void setIsTop(Integer isTop) {
        this.isTop = isTop;
    }
 
    public Integer getIsMonitor() {
        return isMonitor;
    }
 
    public void setIsMonitor(Integer isMonitor) {
        this.isMonitor = isMonitor;
    }
 
    public JSONObject getDatatype() {
        return datatype;
    }
 
    public void setDatatype(JSONObject datatype) {
        this.datatype = datatype;
    }
}