package com.whyc.dto;
|
|
import com.whyc.pojo.db_ckpwrdev_data_rt.CKPowerDevBattRtDataSet;
|
import com.whyc.pojo.db_ckpwrdev_data_rt.CKPowerDevBattRtStateSet;
|
import com.whyc.pojo.db_ckpwrdev_data_rt.CKPowerDevBattSetLog;
|
|
import java.util.List;
|
|
public class BattRtSetDto {
|
|
private CKPowerDevBattRtDataSet dataSet;
|
private CKPowerDevBattRtStateSet stateSet;
|
private List<CKPowerDevBattSetLog> logList;
|
|
public CKPowerDevBattRtDataSet getDataSet() {
|
return dataSet;
|
}
|
|
public void setDataSet(CKPowerDevBattRtDataSet dataSet) {
|
this.dataSet = dataSet;
|
}
|
|
public CKPowerDevBattRtStateSet getStateSet() {
|
return stateSet;
|
}
|
|
public void setStateSet(CKPowerDevBattRtStateSet stateSet) {
|
this.stateSet = stateSet;
|
}
|
|
public List<CKPowerDevBattSetLog> getLogList() {
|
return logList;
|
}
|
|
public void setLogList(List<CKPowerDevBattSetLog> logList) {
|
this.logList = logList;
|
}
|
}
|