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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package com.hdl.sdk.ttl.HDLDeviceManger.Bean;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * Created by panlili on 2024/01/18.
 * 场景
 */
 
public class ScenesData implements Serializable {
    int index;
    int sourceSubnetID;
    int sourceDeviceID;
    int areaCodeID;
    int sceneID;
    byte[] addByte;
    String remark;
    boolean isCallBack;
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public int getSourceSubnetID() {
        return sourceSubnetID;
    }
 
    public void setSourceSubnetID(int sourceSubnetID) {
        this.sourceSubnetID = sourceSubnetID;
    }
 
    public int getSourceDeviceID() {
        return sourceDeviceID;
    }
 
    public void setSourceDeviceID(int sourceDeviceID) {
        this.sourceDeviceID = sourceDeviceID;
    }
 
    public byte[] getAddByte() {
        return addByte;
    }
 
    public void setAddByte(byte[] addByte) {
        this.addByte = addByte;
    }
 
    public int getIndex() {
        return index;
    }
 
    public void setIndex(int index) {
        this.index = index;
    }
 
    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 boolean isCallBack() {
        return isCallBack;
    }
 
    public void setCallBack(boolean callBack) {
        isCallBack = callBack;
    }
}