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;
|
}
|
}
|