南方电网标准版(紫晶版)初始带UKEY版通讯程序
Administrator
2021-01-22 6d31a7e364b74acb92bb69552e1a0e31f39a55f0
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package com.dec.model;
 
import java.io.Serializable;
 
public class Db_rtstateModel implements Serializable {
    private int num;
    private int batt_count;
    private String rec_datetime;
    private float online_vol;
    private float group_vol;
    private float froup_tmp;
    private float group_curr;
    private float batt_state;
    private int batt_test_type;    
    private String batt_test_starttime;
    private String batt_test_recordtime;
    private int batt_test_tlong;
    private float batt_test_cap;
    private float batt_real_cap;
    private float batt_rest_cap;
    private int batt_rest_power1_time;
    private int batt_rest_power2_time;
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public int getBatt_count() {
        return batt_count;
    }
    public void setBatt_count(int batt_count) {
        this.batt_count = batt_count;
    }
    public String getRec_datetime() {
        return rec_datetime;
    }
    public void setRec_datetime(String rec_datetime) {
        this.rec_datetime = rec_datetime;
    }
    public float getOnline_vol() {
        return online_vol;
    }
    public void setOnline_vol(float online_vol) {
        this.online_vol = online_vol;
    }
    public float getGroup_vol() {
        return group_vol;
    }
    public void setGroup_vol(float group_vol) {
        this.group_vol = group_vol;
    }
    public float getFroup_tmp() {
        return froup_tmp;
    }
    public void setFroup_tmp(float froup_tmp) {
        this.froup_tmp = froup_tmp;
    }
    public float getGroup_curr() {
        return group_curr;
    }
    public void setGroup_curr(float group_curr) {
        this.group_curr = group_curr;
    }
    public float getBatt_state() {
        return batt_state;
    }
    public void setBatt_state(float batt_state) {
        this.batt_state = batt_state;
    }
    public int getBatt_test_type() {
        return batt_test_type;
    }
    public void setBatt_test_type(int batt_test_type) {
        this.batt_test_type = batt_test_type;
    }
    public String getBatt_test_starttime() {
        return batt_test_starttime;
    }
    public void setBatt_test_starttime(String batt_test_starttime) {
        this.batt_test_starttime = batt_test_starttime;
    }
    public String getBatt_test_recordtime() {
        return batt_test_recordtime;
    }
    public void setBatt_test_recordtime(String batt_test_recordtime) {
        this.batt_test_recordtime = batt_test_recordtime;
    }
    public int getBatt_test_tlong() {
        return batt_test_tlong;
    }
    public void setBatt_test_tlong(int batt_test_tlong) {
        this.batt_test_tlong = batt_test_tlong;
    }
    public float getBatt_test_cap() {
        return batt_test_cap;
    }
    public void setBatt_test_cap(float batt_test_cap) {
        this.batt_test_cap = batt_test_cap;
    }
    public float getBatt_real_cap() {
        return batt_real_cap;
    }
    public void setBatt_real_cap(float batt_real_cap) {
        this.batt_real_cap = batt_real_cap;
    }
    public float getBatt_rest_cap() {
        return batt_rest_cap;
    }
    public void setBatt_rest_cap(float batt_rest_cap) {
        this.batt_rest_cap = batt_rest_cap;
    }
    public int getBatt_rest_power1_time() {
        return batt_rest_power1_time;
    }
    public void setBatt_rest_power1_time(int batt_rest_power1_time) {
        this.batt_rest_power1_time = batt_rest_power1_time;
    }
    public int getBatt_rest_power2_time() {
        return batt_rest_power2_time;
    }
    public void setBatt_rest_power2_time(int batt_rest_power2_time) {
        this.batt_rest_power2_time = batt_rest_power2_time;
    }
    @Override
    public String toString() {
        return "Db_rtstateModel [num=" + num + ", batt_count=" + batt_count
                + ", rec_datetime=" + rec_datetime + ", online_vol="
                + online_vol + ", group_vol=" + group_vol + ", froup_tmp="
                + froup_tmp + ", group_curr=" + group_curr + ", batt_state="
                + batt_state + ", batt_test_type=" + batt_test_type
                + ", batt_test_starttime=" + batt_test_starttime
                + ", batt_test_recordtime=" + batt_test_recordtime
                + ", batt_test_tlong=" + batt_test_tlong + ", batt_test_cap="
                + batt_test_cap + ", batt_real_cap=" + batt_real_cap
                + ", batt_rest_cap=" + batt_rest_cap
                + ", batt_rest_power1_time=" + batt_rest_power1_time
                + ", batt_rest_power2_time=" + batt_rest_power2_time + "]";
    }
    
}