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
| package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean.gatewaybeans;
|
| /**
| * 窗帘控制类
| */
| public class GatewayCurtainBean {
| /**
| * cmd :read、write标记
| * tag :0表示仅控制、1表示百分比控制
| * value : 数值
| */
| private String cmd;
| private int tag;
| private int value;
|
| public String getCmd() {
| return cmd;
| }
|
| public void setCmd(String cmd) {
| this.cmd = cmd;
| }
|
| public int getTag() {
| return tag;
| }
|
| public void setTag(int tag) {
| this.tag = tag;
| }
|
| public int getValue() {
| return value;
| }
|
| public void setValue(int value) {
| this.value = value;
| }
| }
|
|