panlili2024
2024-09-19 071a8328823a2861f93ce556a4da3e4119cab1a3
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
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;
    }
}