leutu
2024-06-03 3ef35e6cd16bbfa206b26bb3271eac40ad020bcb
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.fastbee.iot.model.ThingsModels;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * 产品分类的Id和名称输出
 *
 * @author kerwincui
 * @date 2021-12-16
 */
public class ThingsModelsDto
{
    public ThingsModelsDto(){
        properties=new ArrayList<>();
        functions=new ArrayList<>();
        events=new ArrayList<>();
    }
 
    /** 属性 */
    private List<PropertyDto> properties;
    /** 功能 */
    private List<FunctionDto> functions;
    /** 事件 */
    private List<EventDto> events;
 
    public List<PropertyDto> getProperties() {
        return properties;
    }
 
    public void setProperties(List<PropertyDto> properties) {
        this.properties = properties;
    }
 
    public List<FunctionDto> getFunctions() {
        return functions;
    }
 
    public void setFunctions(List<FunctionDto> functions) {
        this.functions = functions;
    }
 
    public List<EventDto> getEvents() {
        return events;
    }
 
    public void setEvents(List<EventDto> events) {
        this.events = events;
    }
}