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
package com.ruoyi.iot.model.ThingsModels;
 
 
/**
 * 物模型值的项
 *
 * @author kerwincui
 * @date 2021-12-16
 */
public class ThingsModelValueRemarkItem {
    /**
     * 物模型唯一标识符
     */
    private String id;
 
    /**
     * 物模型值
     */
    private String value;
 
    /**
     * 备注
     **/
    private String remark;
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
}