package com.hdl.sdk.ttl.HDLDeviceManger.Bean;
|
|
public class RcuLight {
|
int physicsChanelNum ;
|
int curState;
|
int littleType;
|
|
public int getLittleType() {
|
return littleType;
|
}
|
|
public void setLittleType(int littleType) {
|
this.littleType = littleType;
|
}
|
|
public int getPhysicsChanelNum() {
|
return physicsChanelNum;
|
}
|
|
public void setPhysicsChanelNum(int physicsChanelNum) {
|
this.physicsChanelNum = physicsChanelNum;
|
}
|
|
public int getCurState() {
|
return curState;
|
}
|
|
public void setCurState(int curState) {
|
this.curState = curState;
|
}
|
}
|