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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
package pwc.taxtech.atms.entitiy;
import java.io.Serializable;
import java.util.Date;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table AccountMappingManual
*
* @mbg.generated do_not_delete_during_merge
*/
public class AccountMappingManual implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.ID
*
* @mbg.generated
*/
private String ID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.StandardCode
*
* @mbg.generated
*/
private String standardCode;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.FullName
*
* @mbg.generated
*/
private String fullName;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.EnterpriseAccountSetID
*
* @mbg.generated
*/
private String enterpriseAccountSetID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.OrganizationID
*
* @mbg.generated
*/
private String organizationID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.IndustryID
*
* @mbg.generated
*/
private String industryID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.UpdateTime
*
* @mbg.generated
*/
private Date updateTime;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.UpdateBy
*
* @mbg.generated
*/
private String updateBy;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
private static final long serialVersionUID = 1L;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.ID
*
* @return the value of AccountMappingManual.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.ID
*
* @param ID the value for AccountMappingManual.ID
*
* @mbg.generated
*/
public void setID(String ID) {
this.ID = ID == null ? null : ID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.StandardCode
*
* @return the value of AccountMappingManual.StandardCode
*
* @mbg.generated
*/
public String getStandardCode() {
return standardCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.StandardCode
*
* @param standardCode the value for AccountMappingManual.StandardCode
*
* @mbg.generated
*/
public void setStandardCode(String standardCode) {
this.standardCode = standardCode == null ? null : standardCode.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.FullName
*
* @return the value of AccountMappingManual.FullName
*
* @mbg.generated
*/
public String getFullName() {
return fullName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.FullName
*
* @param fullName the value for AccountMappingManual.FullName
*
* @mbg.generated
*/
public void setFullName(String fullName) {
this.fullName = fullName == null ? null : fullName.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.EnterpriseAccountSetID
*
* @return the value of AccountMappingManual.EnterpriseAccountSetID
*
* @mbg.generated
*/
public String getEnterpriseAccountSetID() {
return enterpriseAccountSetID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.EnterpriseAccountSetID
*
* @param enterpriseAccountSetID the value for AccountMappingManual.EnterpriseAccountSetID
*
* @mbg.generated
*/
public void setEnterpriseAccountSetID(String enterpriseAccountSetID) {
this.enterpriseAccountSetID = enterpriseAccountSetID == null ? null : enterpriseAccountSetID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.OrganizationID
*
* @return the value of AccountMappingManual.OrganizationID
*
* @mbg.generated
*/
public String getOrganizationID() {
return organizationID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.OrganizationID
*
* @param organizationID the value for AccountMappingManual.OrganizationID
*
* @mbg.generated
*/
public void setOrganizationID(String organizationID) {
this.organizationID = organizationID == null ? null : organizationID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.IndustryID
*
* @return the value of AccountMappingManual.IndustryID
*
* @mbg.generated
*/
public String getIndustryID() {
return industryID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.IndustryID
*
* @param industryID the value for AccountMappingManual.IndustryID
*
* @mbg.generated
*/
public void setIndustryID(String industryID) {
this.industryID = industryID == null ? null : industryID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.UpdateTime
*
* @return the value of AccountMappingManual.UpdateTime
*
* @mbg.generated
*/
public Date getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.UpdateTime
*
* @param updateTime the value for AccountMappingManual.UpdateTime
*
* @mbg.generated
*/
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.UpdateBy
*
* @return the value of AccountMappingManual.UpdateBy
*
* @mbg.generated
*/
public String getUpdateBy() {
return updateBy;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.UpdateBy
*
* @param updateBy the value for AccountMappingManual.UpdateBy
*
* @mbg.generated
*/
public void setUpdateBy(String updateBy) {
this.updateBy = updateBy == null ? null : updateBy.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", ID=").append(ID);
sb.append(", standardCode=").append(standardCode);
sb.append(", fullName=").append(fullName);
sb.append(", enterpriseAccountSetID=").append(enterpriseAccountSetID);
sb.append(", organizationID=").append(organizationID);
sb.append(", industryID=").append(industryID);
sb.append(", updateTime=").append(updateTime);
sb.append(", updateBy=").append(updateBy);
sb.append("]");
return sb.toString();
}
}