lxw
2020-07-11 9db52f2f2dd3665fe9da1ae5657e0167c3a34d40
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
package com.fgkj.dto;
 
import java.io.Serializable;
 
public class BTS_61850 implements Serializable{
    private BattInf binf;
    private BTS_61850_setparam bts_param;
    private BTS_61850_state bts_state;
    public BattInf getBinf() {
        return binf;
    }
    public void setBinf(BattInf binf) {
        this.binf = binf;
    }
    public BTS_61850_setparam getBts_param() {
        return bts_param;
    }
    public void setBts_param(BTS_61850_setparam bts_param) {
        this.bts_param = bts_param;
    }
    public BTS_61850_state getBts_state() {
        return bts_state;
    }
    public void setBts_state(BTS_61850_state bts_state) {
        this.bts_state = bts_state;
    }
    @Override
    public String toString() {
        return "BTS_61850 [binf=" + binf + ", bts_param=" + bts_param
                + ", bts_state=" + bts_state + "]";
    }
    
}