lxw
2020-07-11 9db52f2f2dd3665fe9da1ae5657e0167c3a34d40
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package com.fgkj.dto;
 
import java.io.File;
import java.io.Serializable;
import java.util.Date;
 
import com.mysql.jdbc.Blob;
 
 
public class Deverror_record implements Serializable{
    private int num;
    private String stationId;
    private String stationName;
    private String stationName1;
    private String stationName2;
    private String stationName3;
    private String stationName5;
    private Date record_time;
    private String error_descript;//问题描述
    private String error_dispose;//问题处理
    private int error_state;//问题类型
    private int error_en;         //问题是否解决
    private String note;
    private Page page;
    private int uid;
    private String uname;
    private File picture_one;
    private File picture_two;
    private File picture_three;
    private File picture_four;
    private int picture_num;
    
    private int  solve_uid;
    private String solve_uname;
    private File solve_picture_one;
    private File solve_picture_two;
    private File solve_picture_three;
    private File solve_picture_four;
    private int  solve_picture_num;
    private Date solve_record_time;
    
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    
    public String getStationId() {
        return stationId;
    }
    public void setStationId(String stationId) {
        this.stationId = stationId;
    }
    public String getStationName() {
        return stationName;
    }
    public void setStationName(String stationName) {
        this.stationName = stationName;
    }
    public String getStationName1() {
        return stationName1;
    }
    public void setStationName1(String stationName1) {
        this.stationName1 = stationName1;
    }
    public String getStationName2() {
        return stationName2;
    }
    public void setStationName2(String stationName2) {
        this.stationName2 = stationName2;
    }
    public String getStationName3() {
        return stationName3;
    }
    public void setStationName3(String stationName3) {
        this.stationName3 = stationName3;
    }
    public String getStationName5() {
        return stationName5;
    }
    public void setStationName5(String stationName5) {
        this.stationName5 = stationName5;
    }
    public Date getRecord_time() {
        return record_time;
    }
    public void setRecord_time(Date record_time) {
        this.record_time = record_time;
    }
    public String getError_descript() {
        return error_descript;
    }
    public void setError_descript(String error_descript) {
        this.error_descript = error_descript;
    }
    public int getUid() {
        return uid;
    }
    public void setUid(int uid) {
        this.uid = uid;
    }
    public int getError_en() {
        return error_en;
    }
    public void setError_en(int error_en) {
        this.error_en = error_en;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    public Page getPage() {
        return page;
    }
    public void setPage(Page page) {
        this.page = page;
    }
    
    public File getPicture_one() {
        return picture_one;
    }
    public void setPicture_one(File picture_one) {
        this.picture_one = picture_one;
    }
    public File getPicture_two() {
        return picture_two;
    }
    public void setPicture_two(File picture_two) {
        this.picture_two = picture_two;
    }
    public File getPicture_three() {
        return picture_three;
    }
    public void setPicture_three(File picture_three) {
        this.picture_three = picture_three;
    }
    public File getPicture_four() {
        return picture_four;
    }
    public void setPicture_four(File picture_four) {
        this.picture_four = picture_four;
    }
    public int getPicture_num() {
        return picture_num;
    }
    public void setPicture_num(int picture_num) {
        this.picture_num = picture_num;
    }
    
    public String getError_dispose() {
        return error_dispose;
    }
    public void setError_dispose(String error_dispose) {
        this.error_dispose = error_dispose;
    }
    public int getSolve_uid() {
        return solve_uid;
    }
    public void setSolve_uid(int solve_uid) {
        this.solve_uid = solve_uid;
    }
    public File getSolve_picture_one() {
        return solve_picture_one;
    }
    public void setSolve_picture_one(File solve_picture_one) {
        this.solve_picture_one = solve_picture_one;
    }
    public File getSolve_picture_two() {
        return solve_picture_two;
    }
    public void setSolve_picture_two(File solve_picture_two) {
        this.solve_picture_two = solve_picture_two;
    }
    public File getSolve_picture_three() {
        return solve_picture_three;
    }
    public void setSolve_picture_three(File solve_picture_three) {
        this.solve_picture_three = solve_picture_three;
    }
    public File getSolve_picture_four() {
        return solve_picture_four;
    }
    public void setSolve_picture_four(File solve_picture_four) {
        this.solve_picture_four = solve_picture_four;
    }
    public int getSolve_picture_num() {
        return solve_picture_num;
    }
    public void setSolve_picture_num(int solve_picture_num) {
        this.solve_picture_num = solve_picture_num;
    }
    public String getUname() {
        return uname;
    }
    public void setUname(String uname) {
        this.uname = uname;
    }
    public String getSolve_uname() {
        return solve_uname;
    }
    public void setSolve_uname(String solve_uname) {
        this.solve_uname = solve_uname;
    }
    public Date getSolve_record_time() {
        return solve_record_time;
    }
    public void setSolve_record_time(Date solve_record_time) {
        this.solve_record_time = solve_record_time;
    }
    public int getError_state() {
        return error_state;
    }
    public void setError_state(int error_state) {
        this.error_state = error_state;
    }
    @Override
    public String toString() {
        return "Deverror_record [num=" + num + ", stationId=" + stationId + ", stationName=" + stationName
                + ", stationName1=" + stationName1 + ", stationName2=" + stationName2 + ", stationName3=" + stationName3
                + ", stationName5=" + stationName5 + ", record_time=" + record_time + ", error_descript="
                + error_descript + ", error_dispose=" + error_dispose + ", error_state=" + error_state + ", error_en="
                + error_en + ", note=" + note + ", page=" + page + ", uid=" + uid + ", uname=" + uname
                + ", picture_one=" + picture_one + ", picture_two=" + picture_two + ", picture_three=" + picture_three
                + ", picture_four=" + picture_four + ", picture_num=" + picture_num + ", solve_uid=" + solve_uid
                + ", solve_uname=" + solve_uname + ", solve_picture_one=" + solve_picture_one + ", solve_picture_two="
                + solve_picture_two + ", solve_picture_three=" + solve_picture_three + ", solve_picture_four="
                + solve_picture_four + ", solve_picture_num=" + solve_picture_num + ", solve_record_time="
                + solve_record_time + "]";
    }
    
    
    
    
}