星伟
2018-09-25 cf32b80c2d909de33e4c3e107ee96e1b2358bbfc
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
package com.fgkj.dto;
 
import java.io.Serializable;
 
public class Batt_endurance implements Serializable{
    private int num;
    private int deviceId;
    private String stationid;
    private int endurance_state;
    private float real_cap;
    private float moncapstd;
    private float real_curr;
    private int endurance_timelong;
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public int getDeviceId() {
        return deviceId;
    }
    public void setDeviceId(int deviceId) {
        this.deviceId = deviceId;
    }
    public String getStationid() {
        return stationid;
    }
    public void setStationid(String stationid) {
        this.stationid = stationid;
    }
    public int getEndurance_state() {
        return endurance_state;
    }
    public void setEndurance_state(int endurance_state) {
        this.endurance_state = endurance_state;
    }
    public float getReal_cap() {
        return real_cap;
    }
    public void setReal_cap(float real_cap) {
        this.real_cap = real_cap;
    }
    public float getMoncapstd() {
        return moncapstd;
    }
    public void setMoncapstd(float moncapstd) {
        this.moncapstd = moncapstd;
    }
    public float getReal_curr() {
        return real_curr;
    }
    public void setReal_curr(float real_curr) {
        this.real_curr = real_curr;
    }
    public int getEndurance_timelong() {
        return endurance_timelong;
    }
    public void setEndurance_timelong(int endurance_timelong) {
        this.endurance_timelong = endurance_timelong;
    }
    @Override
    public String toString() {
        return "Batt_endurance [num=" + num + ", deviceId=" + deviceId
                + ", stationid=" + stationid + ", endurance_state="
                + endurance_state + ", real_cap=" + real_cap + ", moncapstd="
                + moncapstd + ", real_curr=" + real_curr
                + ", endurance_timelong=" + endurance_timelong + "]";
    }
    
    
 
}