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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package com.electrical.FourKW;
 
public class Electric_Rt {
    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 int controlangle;            //¿ØÖƽÇ
    public int loopflag;                //¿ª±Õ»·±ê־λ¡¾0¿ª»·£»1±Õ»·¡¿
    public int remoteflag;                //¾ÍµØÔ¶³Ì±ê־λ¡¾0Ô¶³Ì£»1¾ÍµØ¡¿
    public int orderflag;                //ÕýÐòÄæÐò±ê־λ¡¾0ÕýÐò£»1ÄæÐò¡¿
    public int consvolcurrflag;            //ºãѹºáÁ÷±ê־λ¡¾0ºãѹ£»1ºãÁ÷¡¿
    public int powerstartflag;            //µçÔ´Æô¶¯±ê־λ¡¾0Í£Ö¹£»1Æô¶¯¡¿
    public int workmodelflag;            //¹¤×÷ģʽ±ê־λ¡¾0ÆäËûģʽ£»1²¢ÁªÎÈѹ¡¿
    public String note;                    //±¸ÓÃ×Ö¶Î
    
    public Electric_Rt() {
        // TODO Auto-generated constructor stub
    }
    
    public Electric_Rt(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 int getControlangle() {
        return controlangle;
    }
    public int getLoopflag() {
        return loopflag;
    }
    public int getRemoteflag() {
        return remoteflag;
    }
    public int getOrderflag() {
        return orderflag;
    }
    public int getConsvolcurrflag() {
        return consvolcurrflag;
    }
    public int getPowerstartflag() {
        return powerstartflag;
    }
    public int getWorkmodelflag() {
        return workmodelflag;
    }
    public String getNote() {
        return note;
    }
    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(int controlangle) {
        this.controlangle = controlangle;
    }
    public void setLoopflag(int loopflag) {
        this.loopflag = loopflag;
    }
    public void setRemoteflag(int remoteflag) {
        this.remoteflag = remoteflag;
    }
    public void setOrderflag(int orderflag) {
        this.orderflag = orderflag;
    }
    public void setConsvolcurrflag(int consvolcurrflag) {
        this.consvolcurrflag = consvolcurrflag;
    }
    public void setPowerstartflag(int powerstartflag) {
        this.powerstartflag = powerstartflag;
    }
    public void setWorkmodelflag(int workmodelflag) {
        this.workmodelflag = workmodelflag;
    }
    public void setNote(String note) {
        this.note = note;
    }
}