package com.hdl.sdk.ttl.HDLAppliances.HDLLogic;
|
|
|
/**
|
* Created by panlili on 2024/1/19.
|
* 场景模块
|
*/
|
|
public class SceneCtrlBackInfo {
|
|
int areaCodeID;//区号
|
int sceneID;//场景号
|
int loopNum;//回路总数
|
|
public int getAreaCodeID() {
|
return areaCodeID;
|
}
|
|
public void setAreaCodeID(int areaCodeID) {
|
this.areaCodeID = areaCodeID;
|
}
|
|
public int getSceneID() {
|
return sceneID;
|
}
|
|
public void setSceneID(int sceneID) {
|
this.sceneID = sceneID;
|
}
|
|
public int getLoopNum() {
|
return loopNum;
|
}
|
|
public void setLoopNum(int loopNum) {
|
this.loopNum = loopNum;
|
}
|
}
|