package com.hdl.sdk.ttl.HDLDeviceManger.Bean;
|
|
/**
|
* Created by JLChen on 2019/7/23
|
*/
|
public class MCUDataBean {
|
public int command;
|
public byte[] receiveBytes;
|
public MCUConfigurationBean mMCUConfigurationBean;
|
|
public int getCommand() {
|
return command;
|
}
|
|
public void setCommand(int command) {
|
this.command = command;
|
}
|
|
public byte[] getReceiveBytes() {
|
return receiveBytes;
|
}
|
|
public void setReceiveBytes(byte[] receiveBytes) {
|
this.receiveBytes = receiveBytes;
|
}
|
|
public MCUConfigurationBean getMCUConfigurationBean() {
|
return mMCUConfigurationBean;
|
}
|
|
public void setMCUConfigurationBean(MCUConfigurationBean MCUConfigurationBean) {
|
mMCUConfigurationBean = MCUConfigurationBean;
|
}
|
}
|