9度通讯程序适用于9度多组设备
Administrator
2023-12-27 c736aaea5522e295b42676f094d313e7f6a4afb4
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
package com.dev.fbs9009;
 
public class LD_mon_states {
    
    
    private int mon_states;            //µ¥Ìå״̬
    private double mon_vol;            //µ¥Ìåµçѹ
    private double mon_curr;        //µ¥ÌåµçÁ÷
    private double mon_cap;            //µ¥ÌåÈÝÁ¿
    private int stop_reason;        //Í£Ö¹Ô­Òò
    
    private double test_hour;        //²âÊÔʱ³¤-H(Сʱ)
    private double test_minute;        //²âÊÔʱ³¤-M(·ÖÖÓ)
    private double test_second;        //²âÊÔʱ³¤-S(Ãë)
    
    /**
     * ³õʼ»¯µ¥ÌåÊý¾Ý
     */
    public LD_mon_states(){
        this.mon_states = 0;
        this.mon_vol = 0.0;
        this.mon_curr = 0.0;
        this.mon_cap = 0.0;
        this.stop_reason = 0;
        
        this.test_hour = 0;
        this.test_minute = 0;
        this.test_second = 0;
    }
    
    public int getMon_states() {
        return mon_states;
    }
    public void setMon_states(int mon_states) {
        this.mon_states = mon_states;
    }
    public double getMon_vol() {
        return mon_vol;
    }
    public void setMon_vol(double mon_vol) {
        this.mon_vol = mon_vol;
    }
    public double getMon_curr() {
        return mon_curr;
    }
    public void setMon_curr(double mon_curr) {
        this.mon_curr = mon_curr;
    }
    public double getMon_cap() {
        return mon_cap;
    }
    public void setMon_cap(double mon_cap) {
        this.mon_cap = mon_cap;
    }
    public int getStop_reason() {
        return stop_reason;
    }
    public void setStop_reason(int stop_reason) {
        this.stop_reason = stop_reason;
    }
    public double getTest_hour() {
        return test_hour;
    }
    public void setTest_hour(double test_hour) {
        this.test_hour = test_hour;
    }
    public double getTest_minute() {
        return test_minute;
    }
    public void setTest_minute(double test_minute) {
        this.test_minute = test_minute;
    }
    public double getTest_second() {
        return test_second;
    }
    public void setTest_second(double test_second) {
        this.test_second = test_second;
    }
 
    @Override
    public String toString() {
        return "LD_mon_states [mon_states=" + mon_states + ", mon_vol=" + mon_vol + ", mon_curr=" + mon_curr
                + ", mon_cap=" + mon_cap + ", stop_reason=" + stop_reason + ", test_hour=" + test_hour
                + ", test_minute=" + test_minute + ", test_second=" + test_second + "]";
    }
    
    
}