whyclj
2020-08-11 5163e499c41b6e8567fcfd690e7a9140c8f8277f
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
package com.electrical.FourKW;
 
public class Electric_Control_Single {
    public int electric_id;            //µçÔ´id
    public float upsetcurr;            //ÉÏλ»úÉ趨µçÁ÷
    public float upsetvol;            //ÉÏλ»úÉ趨µçѹ
    public int convolcontrol;        //ºãѹ¿ØÖÆ
    public int concurrcontrol;        //ºãÁ÷¿ØÖÆ
    public int othermodes;            //ÆäËûģʽÔËÐÐ
    public int parallelmodes;        //²¢ÁªÎÈѹÔËÐÐ
    public int startposition;        //Æô¶¯Î»
    public int stopposition;        //ֹͣλ
    public int resetposition;        //¸´Î»
    public int fanstart;            //·ç»úÆô¶¯
    public int fanstop;                //·ç»úÍ£Ö¹
    public float dcvol;                //Ö±Á÷µçѹ
    public float dccurr;            //Ö±Á÷µçÁ÷
    public float controlangle;        //¿ØÖƽÇ
    
    public Electric_Control_Single(int electric_id) {
        this.electric_id = electric_id;
    }
    public int getElectric_id() {
        return electric_id;
    }
    public float getUpsetcurr() {
        return upsetcurr;
    }
    public float getUpsetvol() {
        return upsetvol;
    }
    public int getConvolcontrol() {
        return convolcontrol;
    }
    public int getConcurrcontrol() {
        return concurrcontrol;
    }
    public int getOthermodes() {
        return othermodes;
    }
    public int getParallelmodes() {
        return parallelmodes;
    }
    public int getStartposition() {
        return startposition;
    }
    public int getStopposition() {
        return stopposition;
    }
    public int getResetposition() {
        return resetposition;
    }
    public int getFanstart() {
        return fanstart;
    }
    public int getFanstop() {
        return fanstop;
    }
    public float getDcvol() {
        return dcvol;
    }
    public float getDccurr() {
        return dccurr;
    }
    public float getControlangle() {
        return controlangle;
    }
    public void setElectric_id(int electric_id) {
        this.electric_id = electric_id;
    }
    public void setUpsetcurr(float upsetcurr) {
        this.upsetcurr = upsetcurr;
    }
    public void setUpsetvol(float upsetvol) {
        this.upsetvol = upsetvol;
    }
    public void setConvolcontrol(int convolcontrol) {
        this.convolcontrol = convolcontrol;
    }
    public void setConcurrcontrol(int concurrcontrol) {
        this.concurrcontrol = concurrcontrol;
    }
    public void setOthermodes(int othermodes) {
        this.othermodes = othermodes;
    }
    public void setParallelmodes(int parallelmodes) {
        this.parallelmodes = parallelmodes;
    }
    public void setStartposition(int startposition) {
        this.startposition = startposition;
    }
    public void setStopposition(int stopposition) {
        this.stopposition = stopposition;
    }
    public void setResetposition(int resetposition) {
        this.resetposition = resetposition;
    }
    public void setFanstart(int fanstart) {
        this.fanstart = fanstart;
    }
    public void setFanstop(int fanstop) {
        this.fanstop = fanstop;
    }
    public void setDcvol(float dcvol) {
        this.dcvol = dcvol;
    }
    public void setDccurr(float dccurr) {
        this.dccurr = dccurr;
    }
    public void setControlangle(float controlangle) {
        this.controlangle = controlangle;
    }
}