whyclxw
2020-08-24 02be4b868dd46e9ba5c3bbcc71e737db74a71759
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
package com.watersystem.monitor;
 
import java.io.Serializable;
 
public class Water_state implements Serializable{
      public int num;//'Ö÷¼ü',
      public int water_id;//'Ë®Àäϵͳid',
      public int P01_main_pump;//'P01Ö÷±ÃÔËÐÐ',
      public int P11_replenish_pump;//'P11²¹Ë®±ÃÔËÐÐ',
      public int P12_pretest_pump;//'P12ÊÔѹ±ÃÔËÐÐ',
      public int P13_replenish_pump;//'P13²¹Æø±ÃÔËÐÐ',
      public int H01_electric_heater;//'H01µç¼ÓÈÈÆ÷ÔËÐÐ',
      public int H02_electric_heater;//'H02µç¼ÓÈÈÆ÷ÔËÐÐ',
      public int Solenoid_openflag;//'µç´Å·§¿ªÏÞλ',
      public int Solenoid_shutflag;//'µç´Å·§¹ØÏÞλ',
      public int valve_start;//'·§´ò¿ª',
      public int Exhaust_start;//'ÅÅÆø·§´ò¿ª',
      public int remote_start;//'Ô¶³ÌÆô¶¯Ë®Àäϵͳ',
      public int remote_stop;//'Ô¶³ÌֹͣˮÀäϵͳ',
 
      public int Operation_ooled_devices;//'±»ÀäÈ´Æ÷¼þͶÔË',
     
      public int Auto_control_state;//'Ë®Àäϵͳ×Ô¶¯¿ØÖÆ×´Ì¬',
      public int Manual_control_state;//'Ë®ÀäϵͳÊÖ¶¯¿ØÖÆ×´Ì¬',
      public int remote_control_state;//'Ë®ÀäϵͳԶ³Ì¿ØÖÆ×´Ì¬',
      public int Water_system_function;//'Ë®ÀäϵͳÔËÐÐ',
      public String note;//
      
    public Water_state(int water_id) {
        super();
        this.water_id = water_id;
    }
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public int getWater_id() {
        return water_id;
    }
    public void setWater_id(int water_id) {
        this.water_id = water_id;
    }
    public int getP01_main_pump() {
        return P01_main_pump;
    }
    public void setP01_main_pump(int p01_main_pump) {
        P01_main_pump = p01_main_pump;
    }
    public int getP11_replenish_pump() {
        return P11_replenish_pump;
    }
    public void setP11_replenish_pump(int p11_replenish_pump) {
        P11_replenish_pump = p11_replenish_pump;
    }
    public int getP12_pretest_pump() {
        return P12_pretest_pump;
    }
    public void setP12_pretest_pump(int p12_pretest_pump) {
        P12_pretest_pump = p12_pretest_pump;
    }
    public int getP13_replenish_pump() {
        return P13_replenish_pump;
    }
    public void setP13_replenish_pump(int p13_replenish_pump) {
        P13_replenish_pump = p13_replenish_pump;
    }
    public int getH01_electric_heater() {
        return H01_electric_heater;
    }
    public void setH01_electric_heater(int h01_electric_heater) {
        H01_electric_heater = h01_electric_heater;
    }
    public int getH02_electric_heater() {
        return H02_electric_heater;
    }
    public void setH02_electric_heater(int h02_electric_heater) {
        H02_electric_heater = h02_electric_heater;
    }
    
    public int getExhaust_start() {
        return Exhaust_start;
    }
    public void setExhaust_start(int exhaust_start) {
        Exhaust_start = exhaust_start;
    }
    public int getRemote_start() {
        return remote_start;
    }
    public void setRemote_start(int remote_start) {
        this.remote_start = remote_start;
    }
    public int getRemote_stop() {
        return remote_stop;
    }
    public void setRemote_stop(int remote_stop) {
        this.remote_stop = remote_stop;
    }
    public int getOperation_ooled_devices() {
        return Operation_ooled_devices;
    }
    public void setOperation_ooled_devices(int operation_ooled_devices) {
        Operation_ooled_devices = operation_ooled_devices;
    }
    public int getAuto_control_state() {
        return Auto_control_state;
    }
    public void setAuto_control_state(int auto_control_state) {
        Auto_control_state = auto_control_state;
    }
    public int getManual_control_state() {
        return Manual_control_state;
    }
    public void setManual_control_state(int manual_control_state) {
        Manual_control_state = manual_control_state;
    }
    public int getRemote_control_state() {
        return remote_control_state;
    }
    public void setRemote_control_state(int remote_control_state) {
        this.remote_control_state = remote_control_state;
    }
    public int getWater_system_function() {
        return Water_system_function;
    }
    public void setWater_system_function(int water_system_function) {
        Water_system_function = water_system_function;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    public int getSolenoid_openflag() {
        return Solenoid_openflag;
    }
    public void setSolenoid_openflag(int solenoid_openflag) {
        Solenoid_openflag = solenoid_openflag;
    }
    public int getSolenoid_shutflag() {
        return Solenoid_shutflag;
    }
    public void setSolenoid_shutflag(int solenoid_shutflag) {
        Solenoid_shutflag = solenoid_shutflag;
    }
    public int getValve_start() {
        return valve_start;
    }
    public void setValve_start(int valve_start) {
        this.valve_start = valve_start;
    }
    @Override
    public String toString() {
        return "Water_state [num=" + num + ", water_id=" + water_id + ", P01_main_pump=" + P01_main_pump
                + ", P11_replenish_pump=" + P11_replenish_pump + ", P12_pretest_pump=" + P12_pretest_pump
                + ", P13_replenish_pump=" + P13_replenish_pump + ", H01_electric_heater=" + H01_electric_heater
                + ", H02_electric_heater=" + H02_electric_heater + ", Solenoid_openflag=" + Solenoid_openflag
                + ", Solenoid_shutflag=" + Solenoid_shutflag + ", valve_start=" + valve_start + ", Exhaust_start="
                + Exhaust_start + ", remote_start=" + remote_start + ", remote_stop=" + remote_stop
                + ", Operation_ooled_devices=" + Operation_ooled_devices + ", Auto_control_state=" + Auto_control_state
                + ", Manual_control_state=" + Manual_control_state + ", remote_control_state=" + remote_control_state
                + ", Water_system_function=" + Water_system_function + ", note=" + note + "]";
    }
    
      
}