root
2023-09-01 00771647e19e18316e1a4a67a6fcb164274ae7d5
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
package com.ruoyi.iot.model.ThingsModels;
 
import org.apache.commons.math3.analysis.function.Identity;
 
/**
 * 物模型值的项
 *
 * @author kerwincui
 * @date 2021-12-16
 */
public class IdentityAndName
{
    public IdentityAndName(){
 
    }
 
    public IdentityAndName(String id,String value){
        this.id=id;
        this.value=value;
    }
 
    /** 物模型唯一标识符 */
    private String id;
 
    /** 物模型值 */
    private String value;
 
    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;
    }
 
}