whyclj
2020-07-22 a5729100cb1eaa3584b3a194e46e1b8b52b3ed1a
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package com.fgkj.dto;
 
import java.io.Serializable;
 
public class App_bts_battgroup implements Serializable{
    private int num;
    private int dev_id;
    private int battgroup_id;
    private int battgroup_index;
    private int battgroup_mon_cnt;
    private float battgroup_float_vol;
    private float battgroup_float_curr;
    private String battgroup_register_code;
    private String stationName;
    private String stationName1;
    private String stationName2;
    private String stationName3;
    private String stationName5;
    private String stationId;
    private String note;
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public int getDev_id() {
        return dev_id;
    }
    public void setDev_id(int dev_id) {
        this.dev_id = dev_id;
    }
    public int getBattgroup_id() {
        return battgroup_id;
    }
    public void setBattgroup_id(int battgroup_id) {
        this.battgroup_id = battgroup_id;
    }
    public int getBattgroup_index() {
        return battgroup_index;
    }
    public void setBattgroup_index(int battgroup_index) {
        this.battgroup_index = battgroup_index;
    }
    public int getBattgroup_mon_cnt() {
        return battgroup_mon_cnt;
    }
    public void setBattgroup_mon_cnt(int battgroup_mon_cnt) {
        this.battgroup_mon_cnt = battgroup_mon_cnt;
    }
    public String getStationName() {
        return stationName;
    }
    public void setStationName(String stationName) {
        this.stationName = stationName;
    }
    public String getStationName1() {
        return stationName1;
    }
    public void setStationName1(String stationName1) {
        this.stationName1 = stationName1;
    }
    public String getStationName2() {
        return stationName2;
    }
    public void setStationName2(String stationName2) {
        this.stationName2 = stationName2;
    }
    public String getStationName3() {
        return stationName3;
    }
    public void setStationName3(String stationName3) {
        this.stationName3 = stationName3;
    }
    public String getStationName5() {
        return stationName5;
    }
    public void setStationName5(String stationName5) {
        this.stationName5 = stationName5;
    }
    public String getStationId() {
        return stationId;
    }
    public void setStationId(String stationId) {
        this.stationId = stationId;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    public float getBattgroup_float_vol() {
        return battgroup_float_vol;
    }
    public void setBattgroup_float_vol(float battgroup_float_vol) {
        this.battgroup_float_vol = battgroup_float_vol;
    }
    public float getBattgroup_float_curr() {
        return battgroup_float_curr;
    }
    public void setBattgroup_float_curr(float battgroup_float_curr) {
        this.battgroup_float_curr = battgroup_float_curr;
    }
    public String getBattgroup_register_code() {
        return battgroup_register_code;
    }
    public void setBattgroup_register_code(String battgroup_register_code) {
        this.battgroup_register_code = battgroup_register_code;
    }
    @Override
    public String toString() {
        return "App_bts_battgroup [num=" + num + ", dev_id=" + dev_id + ", battgroup_id=" + battgroup_id
                + ", battgroup_index=" + battgroup_index + ", battgroup_mon_cnt=" + battgroup_mon_cnt
                + ", battgroup_float_vol=" + battgroup_float_vol + ", battgroup_float_curr=" + battgroup_float_curr
                + ", battgroup_register_code=" + battgroup_register_code + ", stationName=" + stationName
                + ", stationName1=" + stationName1 + ", stationName2=" + stationName2 + ", stationName3=" + stationName3
                + ", stationName5=" + stationName5 + ", stationId=" + stationId + ", note=" + note + "]";
    }
    
    
    
}