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 properties; /** 功能 */ private List functions; /** 事件 */ private List events; public List getProperties() { return properties; } public void setProperties(List properties) { this.properties = properties; } public List getFunctions() { return functions; } public void setFunctions(List functions) { this.functions = functions; } public List getEvents() { return events; } public void setEvents(List events) { this.events = events; } }