package com.fgkj.dto.rt;
|
|
import java.io.Serializable;
|
|
import com.fgkj.dto.BattInf;
|
|
public class Batt_State_rt implements Serializable{
|
private Rtstate_rt rts;
|
private Rtdata_rt rtd;
|
private BattInf binf;
|
|
public Batt_State_rt() {
|
super();
|
}
|
|
public Rtstate_rt getRts() {
|
return rts;
|
}
|
|
public void setRts(Rtstate_rt rts) {
|
this.rts = rts;
|
}
|
|
public Rtdata_rt getRtd() {
|
return rtd;
|
}
|
|
public void setRtd(Rtdata_rt rtd) {
|
this.rtd = rtd;
|
}
|
|
public BattInf getBinf() {
|
return binf;
|
}
|
|
public void setBinf(BattInf binf) {
|
this.binf = binf;
|
}
|
|
@Override
|
public String toString() {
|
return "Batt_State_rt [rts=" + rts + ", rtd=" + rtd + ", binf=" + binf
|
+ "]";
|
}
|
|
|
|
}
|