TrialBalanceQueryDto.java 25.1 KB
Newer Older
Ken you's avatar
Ken you committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package pwc.taxtech.atms.dto.ebsdto;

import java.math.BigDecimal;

public class TrialBalanceQueryDto {
    /**
     * Database Column Remarks:
     * 数据日期
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.date
     *
     * @mbg.generated
     */
15
    private String date;
Ken you's avatar
Ken you committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

    /**
     * Database Column Remarks:
     * 来源
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.source
     *
     * @mbg.generated
     */
    private String source;

    /**
     * Database Column Remarks:
     * 期间 yyyymm
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.period
     *
     * @mbg.generated
     */
Ken you's avatar
Ken you committed
37
    private String period;
Ken you's avatar
Ken you committed
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

    /**
     * Database Column Remarks:
     * 账套ID
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.ledger_id
     *
     * @mbg.generated
     */
    private String ledgerId;

    /**
     * Database Column Remarks:
     * 账套名称
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.ledger_name
     *
     * @mbg.generated
     */
    private String ledgerName;

    /**
     * Database Column Remarks:
     * 账套币种
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.currency_code
     *
     * @mbg.generated
     */
    private String currencyCode;

    /**
     * Database Column Remarks:
     * 关账标识
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.status
     *
     * @mbg.generated
     */
Ken you's avatar
Ken you committed
81
    private String status;
Ken you's avatar
Ken you committed
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 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544

    /**
     * Database Column Remarks:
     * 主体性质
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.category
     *
     * @mbg.generated
     */
    private String category;

    /**
     * Database Column Remarks:
     * 科目性质
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.account_category
     *
     * @mbg.generated
     */
    private String accountCategory;

    /**
     * Database Column Remarks:
     * 一级科目代码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.acct_code1
     *
     * @mbg.generated
     */
    private String acctCode1;

    /**
     * Database Column Remarks:
     * 一级科目说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.acct_name1
     *
     * @mbg.generated
     */
    private String acctName1;

    /**
     * Database Column Remarks:
     * 二级科目说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.acct_name2
     *
     * @mbg.generated
     */
    private String acctName2;

    /**
     * Database Column Remarks:
     * 三级科目说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.acct_name3
     *
     * @mbg.generated
     */
    private String acctName3;

    /**
     * Database Column Remarks:
     * 主体代码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment1
     *
     * @mbg.generated
     */
    private String segment1;

    /**
     * Database Column Remarks:
     * 成本中心代码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment2
     *
     * @mbg.generated
     */
    private String segment2;

    /**
     * Database Column Remarks:
     * 科目代码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment3
     *
     * @mbg.generated
     */
    private String segment3;

    /**
     * Database Column Remarks:
     * 辅助科目代码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment4
     *
     * @mbg.generated
     */
    private String segment4;

    /**
     * Database Column Remarks:
     * 利润中心代码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment5
     *
     * @mbg.generated
     */
    private String segment5;

    /**
     * Database Column Remarks:
     * 产品代码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment6
     *
     * @mbg.generated
     */
    private String segment6;

    /**
     * Database Column Remarks:
     * 项目代码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment7
     *
     * @mbg.generated
     */
    private String segment7;

    /**
     * Database Column Remarks:
     * 公司间代码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment8
     *
     * @mbg.generated
     */
    private String segment8;

    /**
     * Database Column Remarks:
     * 备用1代码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment9
     *
     * @mbg.generated
     */
    private String segment9;

    /**
     * Database Column Remarks:
     * 备用2代码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment10
     *
     * @mbg.generated
     */
    private String segment10;

    /**
     * Database Column Remarks:
     * 主体说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment1_name
     *
     * @mbg.generated
     */
    private String segment1Name;

    /**
     * Database Column Remarks:
     * 成本中心说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment2_name
     *
     * @mbg.generated
     */
    private String segment2Name;

    /**
     * Database Column Remarks:
     * 科目说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment3_name
     *
     * @mbg.generated
     */
    private String segment3Name;

    /**
     * Database Column Remarks:
     * 辅助科目说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment4_name
     *
     * @mbg.generated
     */
    private String segment4Name;

    /**
     * Database Column Remarks:
     * 利润中心说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment5_name
     *
     * @mbg.generated
     */
    private String segment5Name;

    /**
     * Database Column Remarks:
     * 产品说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment6_name
     *
     * @mbg.generated
     */
    private String segment6Name;

    /**
     * Database Column Remarks:
     * 项目说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment7_name
     *
     * @mbg.generated
     */
    private String segment7Name;

    /**
     * Database Column Remarks:
     * 公司间说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment8_name
     *
     * @mbg.generated
     */
    private String segment8Name;

    /**
     * Database Column Remarks:
     * 备用1说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment9_name
     *
     * @mbg.generated
     */
    private String segment9Name;

    /**
     * Database Column Remarks:
     * 备用2说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.segment10_name
     *
     * @mbg.generated
     */
    private String segment10Name;

    /**
     * Database Column Remarks:
     * 原币本期期初余额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.beg_bal
     *
     * @mbg.generated
     */
    private BigDecimal begBal;

    /**
     * Database Column Remarks:
     * 原币本期借方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.period_dr
     *
     * @mbg.generated
     */
    private BigDecimal periodDr;

    /**
     * Database Column Remarks:
     * 原币本期贷方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.period_cr
     *
     * @mbg.generated
     */
    private BigDecimal periodCr;

    /**
     * Database Column Remarks:
     * 原币本期期末余额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.end_bal
     *
     * @mbg.generated
     */
    private BigDecimal endBal;

    /**
     * Database Column Remarks:
     * 原币本季借方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.qtd_dr
     *
     * @mbg.generated
     */
    private BigDecimal qtdDr;

    /**
     * Database Column Remarks:
     * 原币本季贷方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.qtd_cr
     *
     * @mbg.generated
     */
    private BigDecimal qtdCr;

    /**
     * Database Column Remarks:
     * 原币本年借方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.ytd_dr
     *
     * @mbg.generated
     */
    private BigDecimal ytdDr;

    /**
     * Database Column Remarks:
     * 原币本年贷方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.ytd_cr
     *
     * @mbg.generated
     */
    private BigDecimal ytdCr;

    /**
     * Database Column Remarks:
     * 本位币本期期初余额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.beg_bal_beq
     *
     * @mbg.generated
     */
    private BigDecimal begBalBeq;

    /**
     * Database Column Remarks:
     * 本位币本期借方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.period_dr_beq
     *
     * @mbg.generated
     */
    private BigDecimal periodDrBeq;

    /**
     * Database Column Remarks:
     * 本位币本期贷方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.period_cr_beq
     *
     * @mbg.generated
     */
    private BigDecimal periodCrBeq;

    /**
     * Database Column Remarks:
     * 本位币本期期末余额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.end_bal_beq
     *
     * @mbg.generated
     */
    private BigDecimal endBalBeq;

    /**
     * Database Column Remarks:
     * 本位币本季借方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.qtd_dr_beq
     *
     * @mbg.generated
     */
    private BigDecimal qtdDrBeq;

    /**
     * Database Column Remarks:
     * 本位币本季贷方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.qtd_cr_beq
     *
     * @mbg.generated
     */
    private BigDecimal qtdCrBeq;

    /**
     * Database Column Remarks:
     * 本位币本年借方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.ytd_dr_beq
     *
     * @mbg.generated
     */
    private BigDecimal ytdDrBeq;

    /**
     * Database Column Remarks:
     * 本位币本年贷方发生额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column trial_balance.ytd_cr_beq
     *
     * @mbg.generated
     */
    private BigDecimal ytdCrBeq;

Ken you's avatar
Ken you committed
545 546 547 548 549 550 551 552 553 554 555
    /**
     * Database Column Remarks:
     *   同步用于标记不同分页的数据,避免重复删除
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column cash_flow.task_id
     *
     * @mbg.generated
     */
    private String taskId;

556
    public String getDate() {
Ken you's avatar
Ken you committed
557 558 559
        return date;
    }

560
    public void setDate(String date) {
Ken you's avatar
Ken you committed
561 562 563 564 565 566 567 568
        this.date = date;
    }

    public String getSource() {
        return source;
    }

    public void setSource(String source) {
Ken you's avatar
Ken you committed
569
        this.source = source;
Ken you's avatar
Ken you committed
570 571
    }

Ken you's avatar
Ken you committed
572
    public String getPeriod() {
Ken you's avatar
Ken you committed
573 574 575
        return period;
    }

Ken you's avatar
Ken you committed
576
    public void setPeriod(String period) {
Ken you's avatar
Ken you committed
577 578 579 580 581 582 583 584
        this.period = period;
    }

    public String getLedgerId() {
        return ledgerId;
    }

    public void setLedgerId(String ledgerId) {
Ken you's avatar
Ken you committed
585
        this.ledgerId = ledgerId;
Ken you's avatar
Ken you committed
586 587 588 589 590 591 592
    }

    public String getLedgerName() {
        return ledgerName;
    }

    public void setLedgerName(String ledgerName) {
Ken you's avatar
Ken you committed
593
        this.ledgerName = ledgerName;
Ken you's avatar
Ken you committed
594 595 596 597 598 599 600
    }

    public String getCurrencyCode() {
        return currencyCode;
    }

    public void setCurrencyCode(String currencyCode) {
Ken you's avatar
Ken you committed
601
        this.currencyCode = currencyCode;
Ken you's avatar
Ken you committed
602 603
    }

Ken you's avatar
Ken you committed
604
    public String getStatus() {
Ken you's avatar
Ken you committed
605 606 607
        return status;
    }

Ken you's avatar
Ken you committed
608
    public void setStatus(String status) {
Ken you's avatar
Ken you committed
609
        this.status = status;
Ken you's avatar
Ken you committed
610 611 612 613 614 615 616
    }

    public String getCategory() {
        return category;
    }

    public void setCategory(String category) {
Ken you's avatar
Ken you committed
617
        this.category = category;
Ken you's avatar
Ken you committed
618 619 620 621 622 623 624
    }

    public String getAccountCategory() {
        return accountCategory;
    }

    public void setAccountCategory(String accountCategory) {
Ken you's avatar
Ken you committed
625
        this.accountCategory = accountCategory;
Ken you's avatar
Ken you committed
626 627 628 629 630 631 632
    }

    public String getAcctCode1() {
        return acctCode1;
    }

    public void setAcctCode1(String acctCode1) {
Ken you's avatar
Ken you committed
633
        this.acctCode1 = acctCode1;
Ken you's avatar
Ken you committed
634 635 636 637 638 639 640
    }

    public String getAcctName1() {
        return acctName1;
    }

    public void setAcctName1(String acctName1) {
Ken you's avatar
Ken you committed
641
        this.acctName1 = acctName1;
Ken you's avatar
Ken you committed
642 643 644 645 646 647 648
    }

    public String getAcctName2() {
        return acctName2;
    }

    public void setAcctName2(String acctName2) {
Ken you's avatar
Ken you committed
649
        this.acctName2 = acctName2;
Ken you's avatar
Ken you committed
650 651 652 653 654 655 656
    }

    public String getAcctName3() {
        return acctName3;
    }

    public void setAcctName3(String acctName3) {
Ken you's avatar
Ken you committed
657
        this.acctName3 = acctName3;
Ken you's avatar
Ken you committed
658 659 660 661 662 663 664
    }

    public String getSegment1() {
        return segment1;
    }

    public void setSegment1(String segment1) {
Ken you's avatar
Ken you committed
665
        this.segment1 = segment1;
Ken you's avatar
Ken you committed
666 667 668 669 670 671 672
    }

    public String getSegment2() {
        return segment2;
    }

    public void setSegment2(String segment2) {
Ken you's avatar
Ken you committed
673
        this.segment2 = segment2;
Ken you's avatar
Ken you committed
674 675 676 677 678 679 680
    }

    public String getSegment3() {
        return segment3;
    }

    public void setSegment3(String segment3) {
Ken you's avatar
Ken you committed
681
        this.segment3 = segment3;
Ken you's avatar
Ken you committed
682 683 684 685 686 687 688
    }

    public String getSegment4() {
        return segment4;
    }

    public void setSegment4(String segment4) {
Ken you's avatar
Ken you committed
689
        this.segment4 = segment4;
Ken you's avatar
Ken you committed
690 691 692 693 694 695 696
    }

    public String getSegment5() {
        return segment5;
    }

    public void setSegment5(String segment5) {
Ken you's avatar
Ken you committed
697
        this.segment5 = segment5;
Ken you's avatar
Ken you committed
698 699 700 701 702 703 704
    }

    public String getSegment6() {
        return segment6;
    }

    public void setSegment6(String segment6) {
Ken you's avatar
Ken you committed
705
        this.segment6 = segment6;
Ken you's avatar
Ken you committed
706 707 708 709 710 711 712
    }

    public String getSegment7() {
        return segment7;
    }

    public void setSegment7(String segment7) {
Ken you's avatar
Ken you committed
713
        this.segment7 = segment7;
Ken you's avatar
Ken you committed
714 715 716 717 718 719 720
    }

    public String getSegment8() {
        return segment8;
    }

    public void setSegment8(String segment8) {
Ken you's avatar
Ken you committed
721
        this.segment8 = segment8;
Ken you's avatar
Ken you committed
722 723 724 725 726 727 728
    }

    public String getSegment9() {
        return segment9;
    }

    public void setSegment9(String segment9) {
Ken you's avatar
Ken you committed
729
        this.segment9 = segment9;
Ken you's avatar
Ken you committed
730 731 732 733 734 735 736
    }

    public String getSegment10() {
        return segment10;
    }

    public void setSegment10(String segment10) {
Ken you's avatar
Ken you committed
737
        this.segment10 = segment10;
Ken you's avatar
Ken you committed
738 739 740 741 742 743 744
    }

    public String getSegment1Name() {
        return segment1Name;
    }

    public void setSegment1Name(String segment1Name) {
Ken you's avatar
Ken you committed
745
        this.segment1Name = segment1Name;
Ken you's avatar
Ken you committed
746 747 748 749 750 751 752
    }

    public String getSegment2Name() {
        return segment2Name;
    }

    public void setSegment2Name(String segment2Name) {
Ken you's avatar
Ken you committed
753
        this.segment2Name = segment2Name;
Ken you's avatar
Ken you committed
754 755 756 757 758 759 760
    }

    public String getSegment3Name() {
        return segment3Name;
    }

    public void setSegment3Name(String segment3Name) {
Ken you's avatar
Ken you committed
761
        this.segment3Name = segment3Name;
Ken you's avatar
Ken you committed
762 763 764 765 766 767 768
    }

    public String getSegment4Name() {
        return segment4Name;
    }

    public void setSegment4Name(String segment4Name) {
Ken you's avatar
Ken you committed
769
        this.segment4Name = segment4Name;
Ken you's avatar
Ken you committed
770 771 772 773 774 775 776
    }

    public String getSegment5Name() {
        return segment5Name;
    }

    public void setSegment5Name(String segment5Name) {
Ken you's avatar
Ken you committed
777
        this.segment5Name = segment5Name;
Ken you's avatar
Ken you committed
778 779 780 781 782 783 784
    }

    public String getSegment6Name() {
        return segment6Name;
    }

    public void setSegment6Name(String segment6Name) {
Ken you's avatar
Ken you committed
785
        this.segment6Name = segment6Name;
Ken you's avatar
Ken you committed
786 787 788 789 790 791 792
    }

    public String getSegment7Name() {
        return segment7Name;
    }

    public void setSegment7Name(String segment7Name) {
Ken you's avatar
Ken you committed
793
        this.segment7Name = segment7Name;
Ken you's avatar
Ken you committed
794 795 796 797 798 799 800
    }

    public String getSegment8Name() {
        return segment8Name;
    }

    public void setSegment8Name(String segment8Name) {
Ken you's avatar
Ken you committed
801
        this.segment8Name = segment8Name;
Ken you's avatar
Ken you committed
802 803 804 805 806 807 808
    }

    public String getSegment9Name() {
        return segment9Name;
    }

    public void setSegment9Name(String segment9Name) {
Ken you's avatar
Ken you committed
809
        this.segment9Name = segment9Name;
Ken you's avatar
Ken you committed
810 811 812 813 814 815 816
    }

    public String getSegment10Name() {
        return segment10Name;
    }

    public void setSegment10Name(String segment10Name) {
Ken you's avatar
Ken you committed
817
        this.segment10Name = segment10Name;
Ken you's avatar
Ken you committed
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946
    }

    public BigDecimal getBegBal() {
        return begBal;
    }

    public void setBegBal(BigDecimal begBal) {
        this.begBal = begBal;
    }

    public BigDecimal getPeriodDr() {
        return periodDr;
    }

    public void setPeriodDr(BigDecimal periodDr) {
        this.periodDr = periodDr;
    }

    public BigDecimal getPeriodCr() {
        return periodCr;
    }

    public void setPeriodCr(BigDecimal periodCr) {
        this.periodCr = periodCr;
    }

    public BigDecimal getEndBal() {
        return endBal;
    }

    public void setEndBal(BigDecimal endBal) {
        this.endBal = endBal;
    }

    public BigDecimal getQtdDr() {
        return qtdDr;
    }

    public void setQtdDr(BigDecimal qtdDr) {
        this.qtdDr = qtdDr;
    }

    public BigDecimal getQtdCr() {
        return qtdCr;
    }

    public void setQtdCr(BigDecimal qtdCr) {
        this.qtdCr = qtdCr;
    }

    public BigDecimal getYtdDr() {
        return ytdDr;
    }

    public void setYtdDr(BigDecimal ytdDr) {
        this.ytdDr = ytdDr;
    }

    public BigDecimal getYtdCr() {
        return ytdCr;
    }

    public void setYtdCr(BigDecimal ytdCr) {
        this.ytdCr = ytdCr;
    }

    public BigDecimal getBegBalBeq() {
        return begBalBeq;
    }

    public void setBegBalBeq(BigDecimal begBalBeq) {
        this.begBalBeq = begBalBeq;
    }

    public BigDecimal getPeriodDrBeq() {
        return periodDrBeq;
    }

    public void setPeriodDrBeq(BigDecimal periodDrBeq) {
        this.periodDrBeq = periodDrBeq;
    }

    public BigDecimal getPeriodCrBeq() {
        return periodCrBeq;
    }

    public void setPeriodCrBeq(BigDecimal periodCrBeq) {
        this.periodCrBeq = periodCrBeq;
    }

    public BigDecimal getEndBalBeq() {
        return endBalBeq;
    }

    public void setEndBalBeq(BigDecimal endBalBeq) {
        this.endBalBeq = endBalBeq;
    }

    public BigDecimal getQtdDrBeq() {
        return qtdDrBeq;
    }

    public void setQtdDrBeq(BigDecimal qtdDrBeq) {
        this.qtdDrBeq = qtdDrBeq;
    }

    public BigDecimal getQtdCrBeq() {
        return qtdCrBeq;
    }

    public void setQtdCrBeq(BigDecimal qtdCrBeq) {
        this.qtdCrBeq = qtdCrBeq;
    }

    public BigDecimal getYtdDrBeq() {
        return ytdDrBeq;
    }

    public void setYtdDrBeq(BigDecimal ytdDrBeq) {
        this.ytdDrBeq = ytdDrBeq;
    }

    public BigDecimal getYtdCrBeq() {
        return ytdCrBeq;
    }

    public void setYtdCrBeq(BigDecimal ytdCrBeq) {
        this.ytdCrBeq = ytdCrBeq;
    }
947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010

    public String getTaskId() {
        return taskId;
    }

    public void setTaskId(String taskId) {
        this.taskId = taskId;
    }

    @Override
    public String toString() {
        return "TrialBalanceQueryDto{" +
                "date='" + date + '\'' +
                ", source='" + source + '\'' +
                ", period='" + period + '\'' +
                ", ledgerId='" + ledgerId + '\'' +
                ", ledgerName='" + ledgerName + '\'' +
                ", currencyCode='" + currencyCode + '\'' +
                ", status='" + status + '\'' +
                ", category='" + category + '\'' +
                ", accountCategory='" + accountCategory + '\'' +
                ", acctCode1='" + acctCode1 + '\'' +
                ", acctName1='" + acctName1 + '\'' +
                ", acctName2='" + acctName2 + '\'' +
                ", acctName3='" + acctName3 + '\'' +
                ", segment1='" + segment1 + '\'' +
                ", segment2='" + segment2 + '\'' +
                ", segment3='" + segment3 + '\'' +
                ", segment4='" + segment4 + '\'' +
                ", segment5='" + segment5 + '\'' +
                ", segment6='" + segment6 + '\'' +
                ", segment7='" + segment7 + '\'' +
                ", segment8='" + segment8 + '\'' +
                ", segment9='" + segment9 + '\'' +
                ", segment10='" + segment10 + '\'' +
                ", segment1Name='" + segment1Name + '\'' +
                ", segment2Name='" + segment2Name + '\'' +
                ", segment3Name='" + segment3Name + '\'' +
                ", segment4Name='" + segment4Name + '\'' +
                ", segment5Name='" + segment5Name + '\'' +
                ", segment6Name='" + segment6Name + '\'' +
                ", segment7Name='" + segment7Name + '\'' +
                ", segment8Name='" + segment8Name + '\'' +
                ", segment9Name='" + segment9Name + '\'' +
                ", segment10Name='" + segment10Name + '\'' +
                ", begBal=" + begBal +
                ", periodDr=" + periodDr +
                ", periodCr=" + periodCr +
                ", endBal=" + endBal +
                ", qtdDr=" + qtdDr +
                ", qtdCr=" + qtdCr +
                ", ytdDr=" + ytdDr +
                ", ytdCr=" + ytdCr +
                ", begBalBeq=" + begBalBeq +
                ", periodDrBeq=" + periodDrBeq +
                ", periodCrBeq=" + periodCrBeq +
                ", endBalBeq=" + endBalBeq +
                ", qtdDrBeq=" + qtdDrBeq +
                ", qtdCrBeq=" + qtdCrBeq +
                ", ytdDrBeq=" + ytdDrBeq +
                ", ytdCrBeq=" + ytdCrBeq +
                ", taskId='" + taskId + '\'' +
                '}';
    }
Ken you's avatar
Ken you committed
1011
}