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;
|
}
|
}
|