whyclxw
2024-09-25 7b059e9abaaea204523fc85c67f237bfa51f3f82
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 + "]";
    }
    
    
}