PeriodStandardAccount.java 16.1 KB
Newer Older
neo's avatar
neo committed
1 2 3 4 5 6 7
package pwc.taxtech.atms.vat.entity;

import java.io.Serializable;

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

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

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

    /**
     *
     * This field was generated by MyBatis Generator.
43
     * This field corresponds to the database column period_standard_account.parent_code
neo's avatar
neo committed
44 45 46 47 48 49 50 51
     *
     * @mbg.generated
     */
    private String parentCode;

    /**
     *
     * This field was generated by MyBatis Generator.
52
     * This field corresponds to the database column period_standard_account.full_name
neo's avatar
neo committed
53 54 55 56 57 58 59 60
     *
     * @mbg.generated
     */
    private String fullName;

    /**
     *
     * This field was generated by MyBatis Generator.
61
     * This field corresponds to the database column period_standard_account.acct_prop
neo's avatar
neo committed
62 63 64 65 66 67 68 69
     *
     * @mbg.generated
     */
    private Integer acctProp;

    /**
     *
     * This field was generated by MyBatis Generator.
70
     * This field corresponds to the database column period_standard_account.sub_prop
neo's avatar
neo committed
71 72 73 74 75 76 77 78
     *
     * @mbg.generated
     */
    private Integer subProp;

    /**
     *
     * This field was generated by MyBatis Generator.
79
     * This field corresponds to the database column period_standard_account.acct_level
neo's avatar
neo committed
80 81 82 83 84 85 86 87
     *
     * @mbg.generated
     */
    private Integer acctLevel;

    /**
     *
     * This field was generated by MyBatis Generator.
88
     * This field corresponds to the database column period_standard_account.direction
neo's avatar
neo committed
89 90 91 92 93 94 95 96
     *
     * @mbg.generated
     */
    private Integer direction;

    /**
     *
     * This field was generated by MyBatis Generator.
97
     * This field corresponds to the database column period_standard_account.is_leaf
neo's avatar
neo committed
98 99 100 101 102 103 104 105
     *
     * @mbg.generated
     */
    private Boolean isLeaf;

    /**
     *
     * This field was generated by MyBatis Generator.
106
     * This field corresponds to the database column period_standard_account.rule_type
neo's avatar
neo committed
107 108 109 110 111 112 113 114
     *
     * @mbg.generated
     */
    private Integer ruleType;

    /**
     *
     * This field was generated by MyBatis Generator.
115
     * This field corresponds to the database column period_standard_account.is_active
neo's avatar
neo committed
116 117 118 119 120 121 122 123
     *
     * @mbg.generated
     */
    private Boolean isActive;

    /**
     *
     * This field was generated by MyBatis Generator.
124
     * This field corresponds to the database column period_standard_account.english_name
neo's avatar
neo committed
125 126 127 128 129 130 131 132
     *
     * @mbg.generated
     */
    private String englishName;

    /**
     *
     * This field was generated by MyBatis Generator.
133
     * This field corresponds to the database column period_standard_account.industry_id
neo's avatar
neo committed
134 135 136 137 138 139 140 141
     *
     * @mbg.generated
     */
    private String industryId;

    /**
     *
     * This field was generated by MyBatis Generator.
142
     * This field corresponds to the database column period_standard_account.project_id
neo's avatar
neo committed
143 144 145 146 147 148 149 150
     *
     * @mbg.generated
     */
    private String projectId;

    /**
     *
     * This field was generated by MyBatis Generator.
151
     * This field corresponds to the database column period_standard_account.period
neo's avatar
neo committed
152 153 154 155 156 157 158
     *
     * @mbg.generated
     */
    private Integer period;

    /**
     * This field was generated by MyBatis Generator.
159
     * This field corresponds to the database table period_standard_account
neo's avatar
neo committed
160 161 162 163 164 165 166
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
167
     * This method returns the value of the database column period_standard_account.id
neo's avatar
neo committed
168
     *
169
     * @return the value of period_standard_account.id
neo's avatar
neo committed
170 171 172 173 174 175 176 177 178
     *
     * @mbg.generated
     */
    public String getId() {
        return id;
    }

    /**
     * This method was generated by MyBatis Generator.
179
     * This method sets the value of the database column period_standard_account.id
neo's avatar
neo committed
180
     *
181
     * @param id the value for period_standard_account.id
neo's avatar
neo committed
182 183 184 185 186 187 188 189 190
     *
     * @mbg.generated
     */
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
191
     * This method returns the value of the database column period_standard_account.code
neo's avatar
neo committed
192
     *
193
     * @return the value of period_standard_account.code
neo's avatar
neo committed
194 195 196 197 198 199 200 201 202
     *
     * @mbg.generated
     */
    public String getCode() {
        return code;
    }

    /**
     * This method was generated by MyBatis Generator.
203
     * This method sets the value of the database column period_standard_account.code
neo's avatar
neo committed
204
     *
205
     * @param code the value for period_standard_account.code
neo's avatar
neo committed
206 207 208 209 210 211 212 213 214
     *
     * @mbg.generated
     */
    public void setCode(String code) {
        this.code = code == null ? null : code.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
215
     * This method returns the value of the database column period_standard_account.name
neo's avatar
neo committed
216
     *
217
     * @return the value of period_standard_account.name
neo's avatar
neo committed
218 219 220 221 222 223 224 225 226
     *
     * @mbg.generated
     */
    public String getName() {
        return name;
    }

    /**
     * This method was generated by MyBatis Generator.
227
     * This method sets the value of the database column period_standard_account.name
neo's avatar
neo committed
228
     *
229
     * @param name the value for period_standard_account.name
neo's avatar
neo committed
230 231 232 233 234 235 236 237 238
     *
     * @mbg.generated
     */
    public void setName(String name) {
        this.name = name == null ? null : name.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
239
     * This method returns the value of the database column period_standard_account.parent_code
neo's avatar
neo committed
240
     *
241
     * @return the value of period_standard_account.parent_code
neo's avatar
neo committed
242 243 244 245 246 247 248 249 250
     *
     * @mbg.generated
     */
    public String getParentCode() {
        return parentCode;
    }

    /**
     * This method was generated by MyBatis Generator.
251
     * This method sets the value of the database column period_standard_account.parent_code
neo's avatar
neo committed
252
     *
253
     * @param parentCode the value for period_standard_account.parent_code
neo's avatar
neo committed
254 255 256 257 258 259 260 261 262
     *
     * @mbg.generated
     */
    public void setParentCode(String parentCode) {
        this.parentCode = parentCode == null ? null : parentCode.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
263
     * This method returns the value of the database column period_standard_account.full_name
neo's avatar
neo committed
264
     *
265
     * @return the value of period_standard_account.full_name
neo's avatar
neo committed
266 267 268 269 270 271 272 273 274
     *
     * @mbg.generated
     */
    public String getFullName() {
        return fullName;
    }

    /**
     * This method was generated by MyBatis Generator.
275
     * This method sets the value of the database column period_standard_account.full_name
neo's avatar
neo committed
276
     *
277
     * @param fullName the value for period_standard_account.full_name
neo's avatar
neo committed
278 279 280 281 282 283 284 285 286
     *
     * @mbg.generated
     */
    public void setFullName(String fullName) {
        this.fullName = fullName == null ? null : fullName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
287
     * This method returns the value of the database column period_standard_account.acct_prop
neo's avatar
neo committed
288
     *
289
     * @return the value of period_standard_account.acct_prop
neo's avatar
neo committed
290 291 292 293 294 295 296 297 298
     *
     * @mbg.generated
     */
    public Integer getAcctProp() {
        return acctProp;
    }

    /**
     * This method was generated by MyBatis Generator.
299
     * This method sets the value of the database column period_standard_account.acct_prop
neo's avatar
neo committed
300
     *
301
     * @param acctProp the value for period_standard_account.acct_prop
neo's avatar
neo committed
302 303 304 305 306 307 308 309 310
     *
     * @mbg.generated
     */
    public void setAcctProp(Integer acctProp) {
        this.acctProp = acctProp;
    }

    /**
     * This method was generated by MyBatis Generator.
311
     * This method returns the value of the database column period_standard_account.sub_prop
neo's avatar
neo committed
312
     *
313
     * @return the value of period_standard_account.sub_prop
neo's avatar
neo committed
314 315 316 317 318 319 320 321 322
     *
     * @mbg.generated
     */
    public Integer getSubProp() {
        return subProp;
    }

    /**
     * This method was generated by MyBatis Generator.
323
     * This method sets the value of the database column period_standard_account.sub_prop
neo's avatar
neo committed
324
     *
325
     * @param subProp the value for period_standard_account.sub_prop
neo's avatar
neo committed
326 327 328 329 330 331 332 333 334
     *
     * @mbg.generated
     */
    public void setSubProp(Integer subProp) {
        this.subProp = subProp;
    }

    /**
     * This method was generated by MyBatis Generator.
335
     * This method returns the value of the database column period_standard_account.acct_level
neo's avatar
neo committed
336
     *
337
     * @return the value of period_standard_account.acct_level
neo's avatar
neo committed
338 339 340 341 342 343 344 345 346
     *
     * @mbg.generated
     */
    public Integer getAcctLevel() {
        return acctLevel;
    }

    /**
     * This method was generated by MyBatis Generator.
347
     * This method sets the value of the database column period_standard_account.acct_level
neo's avatar
neo committed
348
     *
349
     * @param acctLevel the value for period_standard_account.acct_level
neo's avatar
neo committed
350 351 352 353 354 355 356 357 358
     *
     * @mbg.generated
     */
    public void setAcctLevel(Integer acctLevel) {
        this.acctLevel = acctLevel;
    }

    /**
     * This method was generated by MyBatis Generator.
359
     * This method returns the value of the database column period_standard_account.direction
neo's avatar
neo committed
360
     *
361
     * @return the value of period_standard_account.direction
neo's avatar
neo committed
362 363 364 365 366 367 368 369 370
     *
     * @mbg.generated
     */
    public Integer getDirection() {
        return direction;
    }

    /**
     * This method was generated by MyBatis Generator.
371
     * This method sets the value of the database column period_standard_account.direction
neo's avatar
neo committed
372
     *
373
     * @param direction the value for period_standard_account.direction
neo's avatar
neo committed
374 375 376 377 378 379 380 381 382
     *
     * @mbg.generated
     */
    public void setDirection(Integer direction) {
        this.direction = direction;
    }

    /**
     * This method was generated by MyBatis Generator.
383
     * This method returns the value of the database column period_standard_account.is_leaf
neo's avatar
neo committed
384
     *
385
     * @return the value of period_standard_account.is_leaf
neo's avatar
neo committed
386 387 388 389 390 391 392 393 394
     *
     * @mbg.generated
     */
    public Boolean getIsLeaf() {
        return isLeaf;
    }

    /**
     * This method was generated by MyBatis Generator.
395
     * This method sets the value of the database column period_standard_account.is_leaf
neo's avatar
neo committed
396
     *
397
     * @param isLeaf the value for period_standard_account.is_leaf
neo's avatar
neo committed
398 399 400 401 402 403 404 405 406
     *
     * @mbg.generated
     */
    public void setIsLeaf(Boolean isLeaf) {
        this.isLeaf = isLeaf;
    }

    /**
     * This method was generated by MyBatis Generator.
407
     * This method returns the value of the database column period_standard_account.rule_type
neo's avatar
neo committed
408
     *
409
     * @return the value of period_standard_account.rule_type
neo's avatar
neo committed
410 411 412 413 414 415 416 417 418
     *
     * @mbg.generated
     */
    public Integer getRuleType() {
        return ruleType;
    }

    /**
     * This method was generated by MyBatis Generator.
419
     * This method sets the value of the database column period_standard_account.rule_type
neo's avatar
neo committed
420
     *
421
     * @param ruleType the value for period_standard_account.rule_type
neo's avatar
neo committed
422 423 424 425 426 427 428 429 430
     *
     * @mbg.generated
     */
    public void setRuleType(Integer ruleType) {
        this.ruleType = ruleType;
    }

    /**
     * This method was generated by MyBatis Generator.
431
     * This method returns the value of the database column period_standard_account.is_active
neo's avatar
neo committed
432
     *
433
     * @return the value of period_standard_account.is_active
neo's avatar
neo committed
434 435 436 437 438 439 440 441 442
     *
     * @mbg.generated
     */
    public Boolean getIsActive() {
        return isActive;
    }

    /**
     * This method was generated by MyBatis Generator.
443
     * This method sets the value of the database column period_standard_account.is_active
neo's avatar
neo committed
444
     *
445
     * @param isActive the value for period_standard_account.is_active
neo's avatar
neo committed
446 447 448 449 450 451 452 453 454
     *
     * @mbg.generated
     */
    public void setIsActive(Boolean isActive) {
        this.isActive = isActive;
    }

    /**
     * This method was generated by MyBatis Generator.
455
     * This method returns the value of the database column period_standard_account.english_name
neo's avatar
neo committed
456
     *
457
     * @return the value of period_standard_account.english_name
neo's avatar
neo committed
458 459 460 461 462 463 464 465 466
     *
     * @mbg.generated
     */
    public String getEnglishName() {
        return englishName;
    }

    /**
     * This method was generated by MyBatis Generator.
467
     * This method sets the value of the database column period_standard_account.english_name
neo's avatar
neo committed
468
     *
469
     * @param englishName the value for period_standard_account.english_name
neo's avatar
neo committed
470 471 472 473 474 475 476 477 478
     *
     * @mbg.generated
     */
    public void setEnglishName(String englishName) {
        this.englishName = englishName == null ? null : englishName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
479
     * This method returns the value of the database column period_standard_account.industry_id
neo's avatar
neo committed
480
     *
481
     * @return the value of period_standard_account.industry_id
neo's avatar
neo committed
482 483 484 485 486 487 488 489 490
     *
     * @mbg.generated
     */
    public String getIndustryId() {
        return industryId;
    }

    /**
     * This method was generated by MyBatis Generator.
491
     * This method sets the value of the database column period_standard_account.industry_id
neo's avatar
neo committed
492
     *
493
     * @param industryId the value for period_standard_account.industry_id
neo's avatar
neo committed
494 495 496 497 498 499 500 501 502
     *
     * @mbg.generated
     */
    public void setIndustryId(String industryId) {
        this.industryId = industryId == null ? null : industryId.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
503
     * This method returns the value of the database column period_standard_account.project_id
neo's avatar
neo committed
504
     *
505
     * @return the value of period_standard_account.project_id
neo's avatar
neo committed
506 507 508 509 510 511 512 513 514
     *
     * @mbg.generated
     */
    public String getProjectId() {
        return projectId;
    }

    /**
     * This method was generated by MyBatis Generator.
515
     * This method sets the value of the database column period_standard_account.project_id
neo's avatar
neo committed
516
     *
517
     * @param projectId the value for period_standard_account.project_id
neo's avatar
neo committed
518 519 520 521 522 523 524 525 526
     *
     * @mbg.generated
     */
    public void setProjectId(String projectId) {
        this.projectId = projectId == null ? null : projectId.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
527
     * This method returns the value of the database column period_standard_account.period
neo's avatar
neo committed
528
     *
529
     * @return the value of period_standard_account.period
neo's avatar
neo committed
530 531 532 533 534 535 536 537 538
     *
     * @mbg.generated
     */
    public Integer getPeriod() {
        return period;
    }

    /**
     * This method was generated by MyBatis Generator.
539
     * This method sets the value of the database column period_standard_account.period
neo's avatar
neo committed
540
     *
541
     * @param period the value for period_standard_account.period
neo's avatar
neo committed
542 543 544 545 546 547 548 549 550
     *
     * @mbg.generated
     */
    public void setPeriod(Integer period) {
        this.period = period;
    }

    /**
     * This method was generated by MyBatis Generator.
551
     * This method corresponds to the database table period_standard_account
neo's avatar
neo committed
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
     *
     * @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(", code=").append(code);
        sb.append(", name=").append(name);
        sb.append(", parentCode=").append(parentCode);
        sb.append(", fullName=").append(fullName);
        sb.append(", acctProp=").append(acctProp);
        sb.append(", subProp=").append(subProp);
        sb.append(", acctLevel=").append(acctLevel);
        sb.append(", direction=").append(direction);
        sb.append(", isLeaf=").append(isLeaf);
        sb.append(", ruleType=").append(ruleType);
        sb.append(", isActive=").append(isActive);
        sb.append(", englishName=").append(englishName);
        sb.append(", industryId=").append(industryId);
        sb.append(", projectId=").append(projectId);
        sb.append(", period=").append(period);
        sb.append("]");
        return sb.toString();
    }
}