whyclj
2020-09-19 30a313e8a229770ec5c4eef49c6e4f57220deca3
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
package com.dev.base.data;
 
public class Dynamicload_control {
    
    public int dev_id;
    public int FZ_b1;                    //FZ°´Å¥1
    public int FZ_b2;                    //FZ°´Å¥2
    public int FZ_b3;                    //FZ°´Å¥3
    public int FZ_b4;                    //FZ°´Å¥4
    public int FZ_b5;                    //FZ°´Å¥5
    public int FZ_b6;                    //FZ°´Å¥6
    public int FZ_b7;                    //FZ°´Å¥7
    public int FZ_b8;                    //FZ°´Å¥8
    public int FZ_b9;                    //FZ°´Å¥9
    public int FZ_b10;                    //FZ°´Å¥10
    public int FZ_b11;                    //FZ°´Å¥11
    public int start_auto;                //Æô¶¯×Ô¶¯¼ÓÔØ
    public int stop_auto;                //Í£Ö¹×Ô¶¯¼ÓÔØ
    public int sudden_crease;            //Í»¼Óͻж
    public int all_open;                //È«²¿·ÖÕ¢
    public int FZ_autostate1;            //FZ×Ô¶¯×´Ì¬1
    public int FZ_autostate2;            //FZ×Ô¶¯×´Ì¬2
    public int FZ_autostate3;            //FZ×Ô¶¯×´Ì¬3
    public int FZ_autostate4;            //FZ×Ô¶¯×´Ì¬4
    public int FZ_autostate5;            //FZ×Ô¶¯×´Ì¬5
    public int local_control;            //¾ÍµØ¿ØÖÆ
    public int back_control;            //ºǫ́¿ØÖÆ
    public int central_control;            //ÖÐ¼ä¿ØÖÆ
    public int inter_volume_M200;        //ÖмäÁ¿M200
    public int fan_button;                //·ç»ú°´Å¥
    //public int fan_output;            //·ç»úÊä³ö
    public float set_power;                //É趨¹¦ÂÊ
    public int interval_time;            //¼ä¸ôʱ¼ä
    public String note;
    
    public Dynamicload_control(int dev_id) {
        this.dev_id = dev_id;
    }
    
    public int getDev_id() {
        return dev_id;
    }
    public int getFZ_b1() {
        return FZ_b1;
    }
    public int getFZ_b2() {
        return FZ_b2;
    }
    public int getFZ_b3() {
        return FZ_b3;
    }
    public int getFZ_b4() {
        return FZ_b4;
    }
    public int getFZ_b5() {
        return FZ_b5;
    }
    public int getFZ_b6() {
        return FZ_b6;
    }
    public int getFZ_b7() {
        return FZ_b7;
    }
    public int getFZ_b8() {
        return FZ_b8;
    }
    public int getFZ_b9() {
        return FZ_b9;
    }
    public int getFZ_b10() {
        return FZ_b10;
    }
    public int getFZ_b11() {
        return FZ_b11;
    }
    public int getStart_auto() {
        return start_auto;
    }
    public int getStop_auto() {
        return stop_auto;
    }
    public int getSudden_crease() {
        return sudden_crease;
    }
    public int getAll_open() {
        return all_open;
    }
    public int getFZ_autostate1() {
        return FZ_autostate1;
    }
    public int getFZ_autostate2() {
        return FZ_autostate2;
    }
    public int getFZ_autostate3() {
        return FZ_autostate3;
    }
    public int getFZ_autostate4() {
        return FZ_autostate4;
    }
    public int getFZ_autostate5() {
        return FZ_autostate5;
    }
    public int getLocal_control() {
        return local_control;
    }
    public int getBack_control() {
        return back_control;
    }
    public int getCentral_control() {
        return central_control;
    }
    public int getInter_volume_M200() {
        return inter_volume_M200;
    }
    public int getFan_button() {
        return fan_button;
    }
    public String getNote() {
        return note;
    }
    public void setDev_id(int dev_id) {
        this.dev_id = dev_id;
    }
    public void setFZ_b1(int fZ_b1) {
        FZ_b1 = fZ_b1;
    }
    public void setFZ_b2(int fZ_b2) {
        FZ_b2 = fZ_b2;
    }
    public void setFZ_b3(int fZ_b3) {
        FZ_b3 = fZ_b3;
    }
    public void setFZ_b4(int fZ_b4) {
        FZ_b4 = fZ_b4;
    }
    public void setFZ_b5(int fZ_b5) {
        FZ_b5 = fZ_b5;
    }
    public void setFZ_b6(int fZ_b6) {
        FZ_b6 = fZ_b6;
    }
    public void setFZ_b7(int fZ_b7) {
        FZ_b7 = fZ_b7;
    }
    public void setFZ_b8(int fZ_b8) {
        FZ_b8 = fZ_b8;
    }
    public void setFZ_b9(int fZ_b9) {
        FZ_b9 = fZ_b9;
    }
    public void setFZ_b10(int fZ_b10) {
        FZ_b10 = fZ_b10;
    }
    public void setFZ_b11(int fZ_b11) {
        FZ_b11 = fZ_b11;
    }
    public void setStart_auto(int start_auto) {
        this.start_auto = start_auto;
    }
    public void setStop_auto(int stop_auto) {
        this.stop_auto = stop_auto;
    }
    public void setSudden_crease(int sudden_crease) {
        this.sudden_crease = sudden_crease;
    }
    public void setAll_open(int all_open) {
        this.all_open = all_open;
    }
    public void setFZ_autostate1(int fZ_autostate1) {
        FZ_autostate1 = fZ_autostate1;
    }
    public void setFZ_autostate2(int fZ_autostate2) {
        FZ_autostate2 = fZ_autostate2;
    }
    public void setFZ_autostate3(int fZ_autostate3) {
        FZ_autostate3 = fZ_autostate3;
    }
    public void setFZ_autostate4(int fZ_autostate4) {
        FZ_autostate4 = fZ_autostate4;
    }
    public void setFZ_autostate5(int fZ_autostate5) {
        FZ_autostate5 = fZ_autostate5;
    }
    public void setLocal_control(int local_control) {
        this.local_control = local_control;
    }
    public void setBack_control(int back_control) {
        this.back_control = back_control;
    }
    public void setCentral_control(int central_control) {
        this.central_control = central_control;
    }
    public void setInter_volume_M200(int inter_volume_M200) {
        this.inter_volume_M200 = inter_volume_M200;
    }
    public void setFan_button(int fan_button) {
        this.fan_button = fan_button;
    }
    public void setNote(String note) {
        this.note = note;
    }
    @Override
    public String toString() {
        return "Dynamicload_control [dev_id=" + dev_id + ", FZ_b1=" + FZ_b1 + ", FZ_b2=" + FZ_b2 + ", FZ_b3=" + FZ_b3
                + ", FZ_b4=" + FZ_b4 + ", FZ_b5=" + FZ_b5 + ", FZ_b6=" + FZ_b6 + ", FZ_b7=" + FZ_b7 + ", FZ_b8=" + FZ_b8
                + ", FZ_b9=" + FZ_b9 + ", FZ_b10=" + FZ_b10 + ", FZ_b11=" + FZ_b11 + ", start_auto=" + start_auto
                + ", stop_auto=" + stop_auto + ", sudden_crease=" + sudden_crease + ", all_open=" + all_open
                + ", FZ_autostate1=" + FZ_autostate1 + ", FZ_autostate2=" + FZ_autostate2 + ", FZ_autostate3="
                + FZ_autostate3 + ", FZ_autostate4=" + FZ_autostate4 + ", FZ_autostate5=" + FZ_autostate5
                + ", local_control=" + local_control + ", back_control=" + back_control + ", central_control="
                + central_control + ", inter_volume_M200=" + inter_volume_M200 + ", fan_button=" + fan_button
                + ", note=" + note + "]";
    }
}