JLChen
2020-06-01 f7133566c6608ec831734590e508c70bad95ffe8
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
package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean;
 
public class RcuCurtain {
    int chanelNum ;
    int curState;
    int littleType;
 
    public int getChanelNum() {
        return chanelNum;
    }
 
    public void setChanelNum(int chanelNum) {
        this.chanelNum = chanelNum;
    }
 
    public int getCurState() {
        return curState;
    }
 
    public void setCurState(int curState) {
        this.curState = curState;
    }
 
    public int getLittleType() {
        return littleType;
    }
 
    public void setLittleType(int littleType) {
        this.littleType = littleType;
    }
}