package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean.mqttbeans; import java.util.List; /** * 设备状态读取表 */ public class ZigbeeReadBean { /** * DeviceAddr : 000d6ffffe044e91 * Epoint : 1 * Cluster_ID : 6 * Command : 2 * SendMode : 2 * Data : {"AttriBute":[{"AttriButeId":0}]} */ private String DeviceAddr; private int Epoint; private int Cluster_ID; private int Command; private int SendMode; private DataBean Data; public String getDeviceAddr() { return DeviceAddr; } public void setDeviceAddr(String DeviceAddr) { this.DeviceAddr = DeviceAddr; } public int getEpoint() { return Epoint; } public void setEpoint(int Epoint) { this.Epoint = Epoint; } public int getCluster_ID() { return Cluster_ID; } public void setCluster_ID(int Cluster_ID) { this.Cluster_ID = Cluster_ID; } public int getCommand() { return Command; } public void setCommand(int Command) { this.Command = Command; } public int getSendMode() { return SendMode; } public void setSendMode(int SendMode) { this.SendMode = SendMode; } public DataBean getData() { return Data; } public void setData(DataBean Data) { this.Data = Data; } public static class DataBean { private List AttriBute; public List getAttriBute() { return AttriBute; } public void setAttriBute(List AttriBute) { this.AttriBute = AttriBute; } public static class AttriButeBean { /** * AttriButeId : 0 */ private int AttriButeId; public int getAttriButeId() { return AttriButeId; } public void setAttriButeId(int AttriButeId) { this.AttriButeId = AttriButeId; } } } }