JournalEntryQueryDto.java 31.8 KB
Newer Older
gary's avatar
gary committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package pwc.taxtech.atms.dto.ebsdto;

import java.math.BigDecimal;


public class JournalEntryQueryDto {
    /**
     * Database Column Remarks:
     * 数据日期
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.date
     *
     * @mbg.generated
     */
16
    private String date;
gary's avatar
gary committed
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

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

    /**
     * Database Column Remarks:
     * 账套ID
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.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 journal_entry.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 journal_entry.currency_code
     *
     * @mbg.generated
     */
    private String currencyCode;

    /**
     * Database Column Remarks:
     * 关账标识 Y/N
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.status
     *
     * @mbg.generated
     */
Ken you's avatar
Ken you committed
71
    private String status;
gary's avatar
gary committed
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

    /**
     * Database Column Remarks:
     * 日记账头ID
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.header_id
     *
     * @mbg.generated
     */
    private String headerId;

    /**
     * Database Column Remarks:
     * 日记账行号
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.line_num
     *
     * @mbg.generated
     */
    private String lineNum;

    /**
     * Database Column Remarks:
     * 审批状态
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.approval_status
     *
     * @mbg.generated
     */
    private String approvalStatus;

    /**
     * Database Column Remarks:
     * 过账
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.posted_status
     *
     * @mbg.generated
     */
    private String postedStatus;

    /**
     * Database Column Remarks:
     * 会计期间 yyyymm
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.period
     *
     * @mbg.generated
     */
Ken you's avatar
Ken you committed
126
    private String period;
gary's avatar
gary committed
127 128 129 130 131 132 133 134 135 136

    /**
     * Database Column Remarks:
     * 凭证日期
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.accounting_date
     *
     * @mbg.generated
     */
137
    private String accountingDate;
gary's avatar
gary committed
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

    /**
     * Database Column Remarks:
     * 日记账来源
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.journal_source
     *
     * @mbg.generated
     */
    private String journalSource;

    /**
     * Database Column Remarks:
     * 日记账类别
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.category
     *
     * @mbg.generated
     */
    private String category;

    /**
     * Database Column Remarks:
     * 日记账名称
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.name
     *
     * @mbg.generated
     */
    private String name;

    /**
     * Database Column Remarks:
     * 凭证编号
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.voucher_num
     *
     * @mbg.generated
     */
    private String voucherNum;

    /**
     * Database Column Remarks:
     * 摘要
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.description
     *
     * @mbg.generated
     */
    private String description;

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

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

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

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

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

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

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

    /**
     * Database Column Remarks:
     * 公司间
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.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 journal_entry.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 journal_entry.segment10
     *
     * @mbg.generated
     */
    private String segment10;

    /**
     * Database Column Remarks:
     * 主体说明
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.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 journal_entry.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 journal_entry.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 journal_entry.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 journal_entry.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 journal_entry.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 journal_entry.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 journal_entry.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 journal_entry.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 journal_entry.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 journal_entry.journal_currency_code
     *
     * @mbg.generated
     */
    private String journalCurrencyCode;

    /**
     * Database Column Remarks:
     * 本位币币种
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.sob_currency_code
     *
     * @mbg.generated
     */
    private String sobCurrencyCode;

    /**
     * Database Column Remarks:
     * 借方金额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.accounted_dr
     *
     * @mbg.generated
     */
    private BigDecimal accountedDr;

    /**
     * Database Column Remarks:
     * 贷方金额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.accounted_cr
     *
     * @mbg.generated
     */
    private BigDecimal accountedCr;

    /**
     * Database Column Remarks:
     * 本位币借方金额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.entered_dr
     *
     * @mbg.generated
     */
    private BigDecimal enteredDr;

    /**
     * Database Column Remarks:
     * 本位币贷方金额
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.entered_cr
     *
     * @mbg.generated
     */
    private BigDecimal enteredCr;

    /**
     * Database Column Remarks:
     * 现金流量表项
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.cf_item
     *
     * @mbg.generated
     */
    private String cfItem;

    /**
     * Database Column Remarks:
     * 城市
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute1
     *
     * @mbg.generated
     */
    private String attribute1;

    /**
     * Database Column Remarks:
     * 交易日期
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute2
     *
     * @mbg.generated
     */
511
    private String attribute2;
gary's avatar
gary committed
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 545 546 547 548 549 550 551 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 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686

    /**
     * Database Column Remarks:
     * 对方银行账号
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute3
     *
     * @mbg.generated
     */
    private String attribute3;

    /**
     * Database Column Remarks:
     * 银行流水号
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute4
     *
     * @mbg.generated
     */
    private String attribute4;

    /**
     * Database Column Remarks:
     * 供应商编号
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute5
     *
     * @mbg.generated
     */
    private String attribute5;

    /**
     * Database Column Remarks:
     * 交易单号
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute6
     *
     * @mbg.generated
     */
    private String attribute6;

    /**
     * Database Column Remarks:
     * 供应商名称
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute7
     *
     * @mbg.generated
     */
    private String attribute7;

    /**
     * Database Column Remarks:
     * 接收编码
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute8
     *
     * @mbg.generated
     */
    private String attribute8;

    /**
     * Database Column Remarks:
     * 制单人
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute9
     *
     * @mbg.generated
     */
    private String attribute9;

    /**
     * Database Column Remarks:
     * 审核人
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute10
     *
     * @mbg.generated
     */
    private String attribute10;

    /**
     * Database Column Remarks:
     * 成本中心部门描述1
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute11
     *
     * @mbg.generated
     */
    private String attribute11;

    /**
     * Database Column Remarks:
     * 成本中心部门描述2
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute12
     *
     * @mbg.generated
     */
    private String attribute12;

    /**
     * Database Column Remarks:
     * 成本中心部门描述3
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute13
     *
     * @mbg.generated
     */
    private String attribute13;

    /**
     * Database Column Remarks:
     * 成本中心部门描述4
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute14
     *
     * @mbg.generated
     */
    private String attribute14;

    /**
     * Database Column Remarks:
     * 成本中心部门描述5
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute15
     *
     * @mbg.generated
     */
    private String attribute15;

    /**
     * Database Column Remarks:
     * 成本中心部门描述6
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.attribute16
     *
     * @mbg.generated
     */
    private String attribute16;

    /**
     * Database Column Remarks:
     * 创建人
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.created_by
     *
     * @mbg.generated
     */
    private String createdBy;

    /**
     * Database Column Remarks:
     * 创建日期
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.created_date
     *
     * @mbg.generated
     */
687
    private String createdDate;
gary's avatar
gary committed
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708

    /**
     * Database Column Remarks:
     * 最后更新人
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.late_updated_by
     *
     * @mbg.generated
     */
    private String lateUpdatedBy;

    /**
     * Database Column Remarks:
     * 最后更新日期
     * <p>
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column journal_entry.late_updated_date
     *
     * @mbg.generated
     */
709
    private String lateUpdatedDate;
gary's avatar
gary committed
710

Ken you's avatar
Ken you committed
711 712 713 714 715 716 717 718 719 720 721
    /**
     * 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;

722
    public String getDate() {
gary's avatar
gary committed
723 724 725
        return date;
    }

726
    public void setDate(String date) {
gary's avatar
gary committed
727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761
        this.date = date;
    }

    public String getSource() {
        return source;
    }

    public void setSource(String source) {
        this.source = source;
    }

    public String getLedgerId() {
        return ledgerId;
    }

    public void setLedgerId(String ledgerId) {
        this.ledgerId = ledgerId;
    }

    public String getLedgerName() {
        return ledgerName;
    }

    public void setLedgerName(String ledgerName) {
        this.ledgerName = ledgerName;
    }

    public String getCurrencyCode() {
        return currencyCode;
    }

    public void setCurrencyCode(String currencyCode) {
        this.currencyCode = currencyCode;
    }

Ken you's avatar
Ken you committed
762
    public String getStatus() {
gary's avatar
gary committed
763 764 765
        return status;
    }

Ken you's avatar
Ken you committed
766
    public void setStatus(String status) {
gary's avatar
gary committed
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
        this.status = status;
    }

    public String getHeaderId() {
        return headerId;
    }

    public void setHeaderId(String headerId) {
        this.headerId = headerId;
    }

    public String getLineNum() {
        return lineNum;
    }

    public void setLineNum(String lineNum) {
        this.lineNum = lineNum;
    }

    public String getApprovalStatus() {
        return approvalStatus;
    }

    public void setApprovalStatus(String approvalStatus) {
        this.approvalStatus = approvalStatus;
    }

    public String getPostedStatus() {
        return postedStatus;
    }

    public void setPostedStatus(String postedStatus) {
        this.postedStatus = postedStatus;
    }

Ken you's avatar
Ken you committed
802
    public String getPeriod() {
gary's avatar
gary committed
803 804 805
        return period;
    }

Ken you's avatar
Ken you committed
806
    public void setPeriod(String period) {
gary's avatar
gary committed
807 808 809
        this.period = period;
    }

810
    public String getAccountingDate() {
gary's avatar
gary committed
811 812 813
        return accountingDate;
    }

814
    public void setAccountingDate(String accountingDate) {
gary's avatar
gary committed
815 816 817 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 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 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
        this.accountingDate = accountingDate;
    }

    public String getJournalSource() {
        return journalSource;
    }

    public void setJournalSource(String journalSource) {
        this.journalSource = journalSource;
    }

    public String getCategory() {
        return category;
    }

    public void setCategory(String category) {
        this.category = category;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getVoucherNum() {
        return voucherNum;
    }

    public void setVoucherNum(String voucherNum) {
        this.voucherNum = voucherNum;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getSegment1() {
        return segment1;
    }

    public void setSegment1(String segment1) {
        this.segment1 = segment1;
    }

    public String getSegment2() {
        return segment2;
    }

    public void setSegment2(String segment2) {
        this.segment2 = segment2;
    }

    public String getSegment3() {
        return segment3;
    }

    public void setSegment3(String segment3) {
        this.segment3 = segment3;
    }

    public String getSegment4() {
        return segment4;
    }

    public void setSegment4(String segment4) {
        this.segment4 = segment4;
    }

    public String getSegment5() {
        return segment5;
    }

    public void setSegment5(String segment5) {
        this.segment5 = segment5;
    }

    public String getSegment6() {
        return segment6;
    }

    public void setSegment6(String segment6) {
        this.segment6 = segment6;
    }

    public String getSegment7() {
        return segment7;
    }

    public void setSegment7(String segment7) {
        this.segment7 = segment7;
    }

    public String getSegment8() {
        return segment8;
    }

    public void setSegment8(String segment8) {
        this.segment8 = segment8;
    }

    public String getSegment9() {
        return segment9;
    }

    public void setSegment9(String segment9) {
        this.segment9 = segment9;
    }

    public String getSegment10() {
        return segment10;
    }

    public void setSegment10(String segment10) {
        this.segment10 = segment10;
    }

    public String getSegment1Name() {
        return segment1Name;
    }

    public void setSegment1Name(String segment1Name) {
        this.segment1Name = segment1Name;
    }

    public String getSegment2Name() {
        return segment2Name;
    }

    public void setSegment2Name(String segment2Name) {
        this.segment2Name = segment2Name;
    }

    public String getSegment3Name() {
        return segment3Name;
    }

    public void setSegment3Name(String segment3Name) {
        this.segment3Name = segment3Name;
    }

    public String getSegment4Name() {
        return segment4Name;
    }

    public void setSegment4Name(String segment4Name) {
        this.segment4Name = segment4Name;
    }

    public String getSegment5Name() {
        return segment5Name;
    }

    public void setSegment5Name(String segment5Name) {
        this.segment5Name = segment5Name;
    }

    public String getSegment6Name() {
        return segment6Name;
    }

    public void setSegment6Name(String segment6Name) {
        this.segment6Name = segment6Name;
    }

    public String getSegment7Name() {
        return segment7Name;
    }

    public void setSegment7Name(String segment7Name) {
        this.segment7Name = segment7Name;
    }

    public String getSegment8Name() {
        return segment8Name;
    }

    public void setSegment8Name(String segment8Name) {
        this.segment8Name = segment8Name;
    }

    public String getSegment9Name() {
        return segment9Name;
    }

    public void setSegment9Name(String segment9Name) {
        this.segment9Name = segment9Name;
    }

    public String getSegment10Name() {
        return segment10Name;
    }

    public void setSegment10Name(String segment10Name) {
        this.segment10Name = segment10Name;
    }

    public String getJournalCurrencyCode() {
        return journalCurrencyCode;
    }

    public void setJournalCurrencyCode(String journalCurrencyCode) {
        this.journalCurrencyCode = journalCurrencyCode;
    }

    public String getSobCurrencyCode() {
        return sobCurrencyCode;
    }

    public void setSobCurrencyCode(String sobCurrencyCode) {
        this.sobCurrencyCode = sobCurrencyCode;
    }

    public BigDecimal getAccountedDr() {
        return accountedDr;
    }

    public void setAccountedDr(BigDecimal accountedDr) {
        this.accountedDr = accountedDr;
    }

    public BigDecimal getAccountedCr() {
        return accountedCr;
    }

    public void setAccountedCr(BigDecimal accountedCr) {
        this.accountedCr = accountedCr;
    }

    public BigDecimal getEnteredDr() {
        return enteredDr;
    }

    public void setEnteredDr(BigDecimal enteredDr) {
        this.enteredDr = enteredDr;
    }

    public BigDecimal getEnteredCr() {
        return enteredCr;
    }

    public void setEnteredCr(BigDecimal enteredCr) {
        this.enteredCr = enteredCr;
    }

    public String getCfItem() {
        return cfItem;
    }

    public void setCfItem(String cfItem) {
        this.cfItem = cfItem;
    }

    public String getAttribute1() {
        return attribute1;
    }

    public void setAttribute1(String attribute1) {
        this.attribute1 = attribute1;
    }

1082
    public String getAttribute2() {
gary's avatar
gary committed
1083 1084 1085
        return attribute2;
    }

1086
    public void setAttribute2(String attribute2) {
gary's avatar
gary committed
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
        this.attribute2 = attribute2;
    }

    public String getAttribute3() {
        return attribute3;
    }

    public void setAttribute3(String attribute3) {
        this.attribute3 = attribute3;
    }

    public String getAttribute4() {
        return attribute4;
    }

    public void setAttribute4(String attribute4) {
        this.attribute4 = attribute4;
    }

    public String getAttribute5() {
        return attribute5;
    }

    public void setAttribute5(String attribute5) {
        this.attribute5 = attribute5;
    }

    public String getAttribute6() {
        return attribute6;
    }

    public void setAttribute6(String attribute6) {
        this.attribute6 = attribute6;
    }

    public String getAttribute7() {
        return attribute7;
    }

    public void setAttribute7(String attribute7) {
        this.attribute7 = attribute7;
    }

    public String getAttribute8() {
        return attribute8;
    }

    public void setAttribute8(String attribute8) {
        this.attribute8 = attribute8;
    }

    public String getAttribute9() {
        return attribute9;
    }

    public void setAttribute9(String attribute9) {
        this.attribute9 = attribute9;
    }

    public String getAttribute10() {
        return attribute10;
    }

    public void setAttribute10(String attribute10) {
        this.attribute10 = attribute10;
    }

    public String getAttribute11() {
        return attribute11;
    }

    public void setAttribute11(String attribute11) {
        this.attribute11 = attribute11;
    }

    public String getAttribute12() {
        return attribute12;
    }

    public void setAttribute12(String attribute12) {
        this.attribute12 = attribute12;
    }

    public String getAttribute13() {
        return attribute13;
    }

    public void setAttribute13(String attribute13) {
        this.attribute13 = attribute13;
    }

    public String getAttribute14() {
        return attribute14;
    }

    public void setAttribute14(String attribute14) {
        this.attribute14 = attribute14;
    }

    public String getAttribute15() {
        return attribute15;
    }

    public void setAttribute15(String attribute15) {
        this.attribute15 = attribute15;
    }

    public String getAttribute16() {
        return attribute16;
    }

    public void setAttribute16(String attribute16) {
        this.attribute16 = attribute16;
    }

    public String getCreatedBy() {
        return createdBy;
    }

    public void setCreatedBy(String createdBy) {
        this.createdBy = createdBy;
    }

1210
    public String getCreatedDate() {
gary's avatar
gary committed
1211 1212 1213
        return createdDate;
    }

1214
    public void setCreatedDate(String createdDate) {
gary's avatar
gary committed
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
        this.createdDate = createdDate;
    }

    public String getLateUpdatedBy() {
        return lateUpdatedBy;
    }

    public void setLateUpdatedBy(String lateUpdatedBy) {
        this.lateUpdatedBy = lateUpdatedBy;
    }

1226
    public String getLateUpdatedDate() {
gary's avatar
gary committed
1227 1228 1229
        return lateUpdatedDate;
    }

1230
    public void setLateUpdatedDate(String lateUpdatedDate) {
gary's avatar
gary committed
1231 1232
        this.lateUpdatedDate = lateUpdatedDate;
    }
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311

    public String getTaskId() {
        return taskId;
    }

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

    @Override
    public String toString() {
        return "JournalEntryQueryDto{" +
                "date='" + date + '\'' +
                ", source='" + source + '\'' +
                ", ledgerId='" + ledgerId + '\'' +
                ", ledgerName='" + ledgerName + '\'' +
                ", currencyCode='" + currencyCode + '\'' +
                ", status='" + status + '\'' +
                ", headerId='" + headerId + '\'' +
                ", lineNum='" + lineNum + '\'' +
                ", approvalStatus='" + approvalStatus + '\'' +
                ", postedStatus='" + postedStatus + '\'' +
                ", period='" + period + '\'' +
                ", accountingDate='" + accountingDate + '\'' +
                ", journalSource='" + journalSource + '\'' +
                ", category='" + category + '\'' +
                ", name='" + name + '\'' +
                ", voucherNum='" + voucherNum + '\'' +
                ", description='" + description + '\'' +
                ", 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 + '\'' +
                ", journalCurrencyCode='" + journalCurrencyCode + '\'' +
                ", sobCurrencyCode='" + sobCurrencyCode + '\'' +
                ", accountedDr=" + accountedDr +
                ", accountedCr=" + accountedCr +
                ", enteredDr=" + enteredDr +
                ", enteredCr=" + enteredCr +
                ", cfItem='" + cfItem + '\'' +
                ", attribute1='" + attribute1 + '\'' +
                ", attribute2='" + attribute2 + '\'' +
                ", attribute3='" + attribute3 + '\'' +
                ", attribute4='" + attribute4 + '\'' +
                ", attribute5='" + attribute5 + '\'' +
                ", attribute6='" + attribute6 + '\'' +
                ", attribute7='" + attribute7 + '\'' +
                ", attribute8='" + attribute8 + '\'' +
                ", attribute9='" + attribute9 + '\'' +
                ", attribute10='" + attribute10 + '\'' +
                ", attribute11='" + attribute11 + '\'' +
                ", attribute12='" + attribute12 + '\'' +
                ", attribute13='" + attribute13 + '\'' +
                ", attribute14='" + attribute14 + '\'' +
                ", attribute15='" + attribute15 + '\'' +
                ", attribute16='" + attribute16 + '\'' +
                ", createdBy='" + createdBy + '\'' +
                ", createdDate='" + createdDate + '\'' +
                ", lateUpdatedBy='" + lateUpdatedBy + '\'' +
                ", lateUpdatedDate='" + lateUpdatedDate + '\'' +
                ", taskId='" + taskId + '\'' +
                '}';
    }
gary's avatar
gary committed
1312
}