package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Created by djl on 2017/3/24.
|
* 所有简易编程
|
*/
|
|
public class DevicesData implements Serializable {
|
List<AppliancesInfo> appliancesInfoList;
|
int sourceSubnetID;
|
int sourceDeviceID;
|
byte[] addByte;
|
String remark;
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public List<AppliancesInfo> getAppliancesInfoList() {
|
return appliancesInfoList;
|
}
|
|
public void setAppliancesInfoList(List<AppliancesInfo> appliancesInfoList) {
|
this.appliancesInfoList = appliancesInfoList;
|
}
|
|
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;
|
}
|
|
|
}
|