lxw
2023-12-20 01fe2cc6784835dea2ed39b4872708625ab6ff04
src/main/java/com/whyc/dto/BattRtSetDto.java
@@ -2,11 +2,15 @@
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;
@@ -23,4 +27,12 @@
    public void setStateSet(CKPowerDevBattRtStateSet stateSet) {
        this.stateSet = stateSet;
    }
    public List<CKPowerDevBattSetLog> getLogList() {
        return logList;
    }
    public void setLogList(List<CKPowerDevBattSetLog> logList) {
        this.logList = logList;
    }
}