package com.hdl.sdk.ttl.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;
|
}
|
}
|