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
package com.ruoyi.iot.model.ThingsModelItem;
 
public class EnumItemOutput
{
    private String text;
    private String value;
 
    public String getText() {
        return text;
    }
 
    public void setText(String text) {
        this.text = text;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
}