wangmengzhao
2023-11-10 20f76ea4b7cf8da2eaca8be90fceff69cd3c3832
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
    }
}