| | |
| | | private LogicMode logicMode;//逻辑模块特有 |
| | | private int physicsChannelNum;//RCU 灯光特有 |
| | | private byte[] feedbackState;//状态反馈记录数据 20190709新增 |
| | | |
| | | private int intCurState; |
| | | private String deviceKey; |
| | | |
| | | public int getIntCurState() { |
| | | return intCurState; |
| | |
| | | this.feedbackState = feedbackState; |
| | | } |
| | | |
| | | public String getDeviceKey() { |
| | | if (deviceKey == null) { |
| | | deviceKey = "K" + this.bigType |
| | | + "-" + this.littleType |
| | | + "-" + this.deviceSubnetID |
| | | + "-" + this.deviceDeviceID |
| | | + "-" + this.channelNum; |
| | | } |
| | | return deviceKey; |
| | | } |
| | | |
| | | public void setDeviceKey(String deviceKey) { |
| | | this.deviceKey = deviceKey; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |