whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
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
package com.fgkj.dto;
 
import org.apache.ibatis.type.Alias;
 
import java.io.Serializable;
@Alias("LD9")
public class LD9 implements Serializable{
    private BattInf binf;
    private LD9_setparam ld9_param;
    private LD9_state ld9_state;
    public BattInf getBinf() {
        return binf;
    }
    public void setBinf(BattInf binf) {
        this.binf = binf;
    }
    public LD9_setparam getLd9_param() {
        return ld9_param;
    }
    public void setLd9_param(LD9_setparam ld9_param) {
        this.ld9_param = ld9_param;
    }
    public LD9_state getLd9_state() {
        return ld9_state;
    }
    public void setLd9_state(LD9_state ld9_state) {
        this.ld9_state = ld9_state;
    }
    @Override
    public String toString() {
        return "LD9 [binf=" + binf + ", ld9_param=" + ld9_param
                + ", ld9_state=" + ld9_state + "]";
    }
    
 
}