package com.table.badbatt;
|
|
import java.io.Serializable;
|
|
public class Batt_Maint_Dealarm implements Serializable{
|
private BattInf binf;
|
private Batttestdata_inf tinf;
|
private Batttestdatastop tstop;
|
|
|
public Batt_Maint_Dealarm() {
|
super();
|
}
|
public BattInf getBinf() {
|
return binf;
|
}
|
public void setBinf(BattInf binf) {
|
this.binf = binf;
|
}
|
public Batttestdata_inf getTinf() {
|
return tinf;
|
}
|
public void setTinf(Batttestdata_inf tinf) {
|
this.tinf = tinf;
|
}
|
public Batttestdatastop getTstop() {
|
return tstop;
|
}
|
public void setTstop(Batttestdatastop tstop) {
|
this.tstop = tstop;
|
}
|
@Override
|
public String toString() {
|
return "Batt_Maint_Dealarm [binf=" + binf + ", tinf=" + tinf + ", tstop=" + tstop + "]";
|
}
|
|
|
}
|