IndexAnalysisResult.java 16.2 KB
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1
package pwc.taxtech.atms.vat.entity;
2 3 4 5 6 7 8

import java.io.Serializable;
import java.util.Date;

/**
 *
 * This class was generated by MyBatis Generator.
neo's avatar
neo committed
9
 * This class corresponds to the database table TAX_PROJECT.INDEX_ANALYSIS_RESULT
10 11 12 13 14 15 16
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class IndexAnalysisResult implements Serializable {
    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
17
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.ID
18 19 20
     *
     * @mbg.generated
     */
neo's avatar
neo committed
21
    private String id;
22 23 24 25

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
26
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.MODEL_ID
27 28 29
     *
     * @mbg.generated
     */
neo's avatar
neo committed
30
    private String modelId;
31 32 33 34

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
35
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.CODE
36 37 38 39 40 41 42 43
     *
     * @mbg.generated
     */
    private String code;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
44
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.NAME
45 46 47 48 49 50 51 52
     *
     * @mbg.generated
     */
    private String name;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
53
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.DESCRIPTION
54 55 56 57 58 59 60 61
     *
     * @mbg.generated
     */
    private String description;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
62
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.MONTH_EXPLAIN
63 64 65 66 67 68 69 70
     *
     * @mbg.generated
     */
    private String monthExplain;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
71
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.YEAR_EXPLAIN
72 73 74 75 76 77 78 79
     *
     * @mbg.generated
     */
    private String yearExplain;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
80
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.SERVICE_TYPE_ID
81 82 83
     *
     * @mbg.generated
     */
neo's avatar
neo committed
84
    private String serviceTypeId;
85 86 87 88

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
89
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.CATEGORY_ID
90 91 92
     *
     * @mbg.generated
     */
neo's avatar
neo committed
93
    private String categoryId;
94 95 96 97

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
98
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.TYPE
99 100 101 102 103 104 105 106
     *
     * @mbg.generated
     */
    private Integer type;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
107
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.INDEX_CODE_TOTAL
108 109 110 111 112 113 114 115
     *
     * @mbg.generated
     */
    private String indexCodeTotal;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
116
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.IS_SHOW
117 118 119 120 121 122 123 124
     *
     * @mbg.generated
     */
    private Integer isShow;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
125
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.IS_REPORT
126 127 128 129 130 131 132 133
     *
     * @mbg.generated
     */
    private Integer isReport;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
134
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.CREATE_TIME
135 136 137 138 139 140 141 142
     *
     * @mbg.generated
     */
    private Date createTime;

    /**
     *
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
143
     * This field corresponds to the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.UPDATE_TIME
144 145 146 147 148 149 150
     *
     * @mbg.generated
     */
    private Date updateTime;

    /**
     * This field was generated by MyBatis Generator.
neo's avatar
neo committed
151
     * This field corresponds to the database table TAX_PROJECT.INDEX_ANALYSIS_RESULT
152 153 154 155 156 157 158
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
159
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.ID
160
     *
neo's avatar
neo committed
161
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.ID
162 163 164
     *
     * @mbg.generated
     */
neo's avatar
neo committed
165 166
    public String getId() {
        return id;
167 168 169 170
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
171
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.ID
172
     *
neo's avatar
neo committed
173
     * @param id the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.ID
174 175 176
     *
     * @mbg.generated
     */
neo's avatar
neo committed
177 178
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
179 180 181 182
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
183
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.MODEL_ID
184
     *
neo's avatar
neo committed
185
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.MODEL_ID
186 187 188
     *
     * @mbg.generated
     */
neo's avatar
neo committed
189 190
    public String getModelId() {
        return modelId;
191 192 193 194
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
195
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.MODEL_ID
196
     *
neo's avatar
neo committed
197
     * @param modelId the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.MODEL_ID
198 199 200
     *
     * @mbg.generated
     */
neo's avatar
neo committed
201 202
    public void setModelId(String modelId) {
        this.modelId = modelId == null ? null : modelId.trim();
203 204 205 206
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
207
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.CODE
208
     *
neo's avatar
neo committed
209
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.CODE
210 211 212 213 214 215 216 217 218
     *
     * @mbg.generated
     */
    public String getCode() {
        return code;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
219
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.CODE
220
     *
neo's avatar
neo committed
221
     * @param code the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.CODE
222 223 224 225 226 227 228 229 230
     *
     * @mbg.generated
     */
    public void setCode(String code) {
        this.code = code == null ? null : code.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
231
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.NAME
232
     *
neo's avatar
neo committed
233
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.NAME
234 235 236 237 238 239 240 241 242
     *
     * @mbg.generated
     */
    public String getName() {
        return name;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
243
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.NAME
244
     *
neo's avatar
neo committed
245
     * @param name the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.NAME
246 247 248 249 250 251 252 253 254
     *
     * @mbg.generated
     */
    public void setName(String name) {
        this.name = name == null ? null : name.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
255
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.DESCRIPTION
256
     *
neo's avatar
neo committed
257
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.DESCRIPTION
258 259 260 261 262 263 264 265 266
     *
     * @mbg.generated
     */
    public String getDescription() {
        return description;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
267
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.DESCRIPTION
268
     *
neo's avatar
neo committed
269
     * @param description the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.DESCRIPTION
270 271 272 273 274 275 276 277 278
     *
     * @mbg.generated
     */
    public void setDescription(String description) {
        this.description = description == null ? null : description.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
279
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.MONTH_EXPLAIN
280
     *
neo's avatar
neo committed
281
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.MONTH_EXPLAIN
282 283 284 285 286 287 288 289 290
     *
     * @mbg.generated
     */
    public String getMonthExplain() {
        return monthExplain;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
291
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.MONTH_EXPLAIN
292
     *
neo's avatar
neo committed
293
     * @param monthExplain the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.MONTH_EXPLAIN
294 295 296 297 298 299 300 301 302
     *
     * @mbg.generated
     */
    public void setMonthExplain(String monthExplain) {
        this.monthExplain = monthExplain == null ? null : monthExplain.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
303
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.YEAR_EXPLAIN
304
     *
neo's avatar
neo committed
305
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.YEAR_EXPLAIN
306 307 308 309 310 311 312 313 314
     *
     * @mbg.generated
     */
    public String getYearExplain() {
        return yearExplain;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
315
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.YEAR_EXPLAIN
316
     *
neo's avatar
neo committed
317
     * @param yearExplain the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.YEAR_EXPLAIN
318 319 320 321 322 323 324 325 326
     *
     * @mbg.generated
     */
    public void setYearExplain(String yearExplain) {
        this.yearExplain = yearExplain == null ? null : yearExplain.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
327
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.SERVICE_TYPE_ID
328
     *
neo's avatar
neo committed
329
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.SERVICE_TYPE_ID
330 331 332
     *
     * @mbg.generated
     */
neo's avatar
neo committed
333 334
    public String getServiceTypeId() {
        return serviceTypeId;
335 336 337 338
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
339
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.SERVICE_TYPE_ID
340
     *
neo's avatar
neo committed
341
     * @param serviceTypeId the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.SERVICE_TYPE_ID
342 343 344
     *
     * @mbg.generated
     */
neo's avatar
neo committed
345 346
    public void setServiceTypeId(String serviceTypeId) {
        this.serviceTypeId = serviceTypeId == null ? null : serviceTypeId.trim();
347 348 349 350
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
351
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.CATEGORY_ID
352
     *
neo's avatar
neo committed
353
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.CATEGORY_ID
354 355 356
     *
     * @mbg.generated
     */
neo's avatar
neo committed
357 358
    public String getCategoryId() {
        return categoryId;
359 360 361 362
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
363
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.CATEGORY_ID
364
     *
neo's avatar
neo committed
365
     * @param categoryId the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.CATEGORY_ID
366 367 368
     *
     * @mbg.generated
     */
neo's avatar
neo committed
369 370
    public void setCategoryId(String categoryId) {
        this.categoryId = categoryId == null ? null : categoryId.trim();
371 372 373 374
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
375
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.TYPE
376
     *
neo's avatar
neo committed
377
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.TYPE
378 379 380 381 382 383 384 385 386
     *
     * @mbg.generated
     */
    public Integer getType() {
        return type;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
387
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.TYPE
388
     *
neo's avatar
neo committed
389
     * @param type the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.TYPE
390 391 392 393 394 395 396 397 398
     *
     * @mbg.generated
     */
    public void setType(Integer type) {
        this.type = type;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
399
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.INDEX_CODE_TOTAL
400
     *
neo's avatar
neo committed
401
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.INDEX_CODE_TOTAL
402 403 404 405 406 407 408 409 410
     *
     * @mbg.generated
     */
    public String getIndexCodeTotal() {
        return indexCodeTotal;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
411
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.INDEX_CODE_TOTAL
412
     *
neo's avatar
neo committed
413
     * @param indexCodeTotal the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.INDEX_CODE_TOTAL
414 415 416 417 418 419 420 421 422
     *
     * @mbg.generated
     */
    public void setIndexCodeTotal(String indexCodeTotal) {
        this.indexCodeTotal = indexCodeTotal == null ? null : indexCodeTotal.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
423
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.IS_SHOW
424
     *
neo's avatar
neo committed
425
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.IS_SHOW
426 427 428 429 430 431 432 433 434
     *
     * @mbg.generated
     */
    public Integer getIsShow() {
        return isShow;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
435
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.IS_SHOW
436
     *
neo's avatar
neo committed
437
     * @param isShow the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.IS_SHOW
438 439 440 441 442 443 444 445 446
     *
     * @mbg.generated
     */
    public void setIsShow(Integer isShow) {
        this.isShow = isShow;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
447
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.IS_REPORT
448
     *
neo's avatar
neo committed
449
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.IS_REPORT
450 451 452 453 454 455 456 457 458
     *
     * @mbg.generated
     */
    public Integer getIsReport() {
        return isReport;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
459
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.IS_REPORT
460
     *
neo's avatar
neo committed
461
     * @param isReport the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.IS_REPORT
462 463 464 465 466 467 468 469 470
     *
     * @mbg.generated
     */
    public void setIsReport(Integer isReport) {
        this.isReport = isReport;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
471
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.CREATE_TIME
472
     *
neo's avatar
neo committed
473
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.CREATE_TIME
474 475 476 477 478 479 480 481 482
     *
     * @mbg.generated
     */
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
483
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.CREATE_TIME
484
     *
neo's avatar
neo committed
485
     * @param createTime the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.CREATE_TIME
486 487 488 489 490 491 492 493 494
     *
     * @mbg.generated
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
495
     * This method returns the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.UPDATE_TIME
496
     *
neo's avatar
neo committed
497
     * @return the value of TAX_PROJECT.INDEX_ANALYSIS_RESULT.UPDATE_TIME
498 499 500 501 502 503 504 505 506
     *
     * @mbg.generated
     */
    public Date getUpdateTime() {
        return updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
507
     * This method sets the value of the database column TAX_PROJECT.INDEX_ANALYSIS_RESULT.UPDATE_TIME
508
     *
neo's avatar
neo committed
509
     * @param updateTime the value for TAX_PROJECT.INDEX_ANALYSIS_RESULT.UPDATE_TIME
510 511 512 513 514 515 516 517 518
     *
     * @mbg.generated
     */
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
519
     * This method corresponds to the database table TAX_PROJECT.INDEX_ANALYSIS_RESULT
520 521 522 523 524 525 526 527 528
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
neo's avatar
neo committed
529 530
        sb.append(", id=").append(id);
        sb.append(", modelId=").append(modelId);
531 532 533 534 535
        sb.append(", code=").append(code);
        sb.append(", name=").append(name);
        sb.append(", description=").append(description);
        sb.append(", monthExplain=").append(monthExplain);
        sb.append(", yearExplain=").append(yearExplain);
neo's avatar
neo committed
536 537
        sb.append(", serviceTypeId=").append(serviceTypeId);
        sb.append(", categoryId=").append(categoryId);
538 539 540 541 542 543 544 545 546 547
        sb.append(", type=").append(type);
        sb.append(", indexCodeTotal=").append(indexCodeTotal);
        sb.append(", isShow=").append(isShow);
        sb.append(", isReport=").append(isReport);
        sb.append(", createTime=").append(createTime);
        sb.append(", updateTime=").append(updateTime);
        sb.append("]");
        return sb.toString();
    }
}