001 /* 002 * Copyright 2011 The Kuali Foundation. 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.kfs.module.bc.businessobject; 017 018 019 /** 020 * Budget Construction Organization Account Summary Report Business Object. 021 */ 022 public class BudgetConstructionOrgMonthSummaryReport { 023 024 // Header parts 025 private String fiscalYear; 026 private String orgChartOfAccountsCode; 027 private String orgChartOfAccountDescription; 028 private String chartOfAccountsCode; 029 private String chartOfAccountDescription; 030 private String organizationCode; 031 private String organizationName; 032 private String consHdr; 033 private String fundGroupCode; 034 private String fundGroupName; 035 private String subFundGroupCode; 036 private String subFundGroupDescription; 037 038 039 // Groups 040 //private String financialObjectLevelCode; 041 private String incomeExpenseCode; 042 private String financialConsolidationSortCode; 043 private String financialLevelSortCode; 044 private String financialObjectCode; 045 private String financialSubObjectCode; 046 //private String financialConsolidationSortCode; 047 048 // Body parts 049 //private String financialObjectLevelName; 050 private String financialObjectCodeName; 051 private Integer accountLineAnnualBalanceAmount; 052 private Integer financialDocumentMonth1LineAmount; 053 private Integer financialDocumentMonth2LineAmount; 054 private Integer financialDocumentMonth3LineAmount; 055 private Integer financialDocumentMonth4LineAmount; 056 private Integer financialDocumentMonth5LineAmount; 057 private Integer financialDocumentMonth6LineAmount; 058 private Integer financialDocumentMonth7LineAmount; 059 private Integer financialDocumentMonth8LineAmount; 060 private Integer financialDocumentMonth9LineAmount; 061 private Integer financialDocumentMonth10LineAmount; 062 private Integer financialDocumentMonth11LineAmount; 063 private Integer financialDocumentMonth12LineAmount; 064 065 066 // Total parts 067 private String levelTotalDescription; 068 private Integer levelAccountLineAnnualBalanceAmount; 069 private Integer levelMonth1LineAmount; 070 private Integer levelMonth2LineAmount; 071 private Integer levelMonth3LineAmount; 072 private Integer levelMonth4LineAmount; 073 private Integer levelMonth5LineAmount; 074 private Integer levelMonth6LineAmount; 075 private Integer levelMonth7LineAmount; 076 private Integer levelMonth8LineAmount; 077 private Integer levelMonth9LineAmount; 078 private Integer levelMonth10LineAmount; 079 private Integer levelMonth11LineAmount; 080 private Integer levelMonth12LineAmount; 081 082 private String consTotalDescription; 083 private Integer consAccountLineAnnualBalanceAmount; 084 private Integer consMonth1LineAmount; 085 private Integer consMonth2LineAmount; 086 private Integer consMonth3LineAmount; 087 private Integer consMonth4LineAmount; 088 private Integer consMonth5LineAmount; 089 private Integer consMonth6LineAmount; 090 private Integer consMonth7LineAmount; 091 private Integer consMonth8LineAmount; 092 private Integer consMonth9LineAmount; 093 private Integer consMonth10LineAmount; 094 private Integer consMonth11LineAmount; 095 private Integer consMonth12LineAmount; 096 097 private String typeTotalDescription; 098 private Integer typeAccountLineAnnualBalanceAmount; 099 private Integer typeMonth1LineAmount; 100 private Integer typeMonth2LineAmount; 101 private Integer typeMonth3LineAmount; 102 private Integer typeMonth4LineAmount; 103 private Integer typeMonth5LineAmount; 104 private Integer typeMonth6LineAmount; 105 private Integer typeMonth7LineAmount; 106 private Integer typeMonth8LineAmount; 107 private Integer typeMonth9LineAmount; 108 private Integer typeMonth10LineAmount; 109 private Integer typeMonth11LineAmount; 110 private Integer typeMonth12LineAmount; 111 112 private Integer revAccountLineAnnualBalanceAmount; 113 private Integer revMonth1LineAmount; 114 private Integer revMonth2LineAmount; 115 private Integer revMonth3LineAmount; 116 private Integer revMonth4LineAmount; 117 private Integer revMonth5LineAmount; 118 private Integer revMonth6LineAmount; 119 private Integer revMonth7LineAmount; 120 private Integer revMonth8LineAmount; 121 private Integer revMonth9LineAmount; 122 private Integer revMonth10LineAmount; 123 private Integer revMonth11LineAmount; 124 private Integer revMonth12LineAmount; 125 126 private Integer expAccountLineAnnualBalanceAmount; 127 private Integer expMonth1LineAmount; 128 private Integer expMonth2LineAmount; 129 private Integer expMonth3LineAmount; 130 private Integer expMonth4LineAmount; 131 private Integer expMonth5LineAmount; 132 private Integer expMonth6LineAmount; 133 private Integer expMonth7LineAmount; 134 private Integer expMonth8LineAmount; 135 private Integer expMonth9LineAmount; 136 private Integer expMonth10LineAmount; 137 private Integer expMonth11LineAmount; 138 private Integer expMonth12LineAmount; 139 140 private Integer differenceAccountLineAnnualBalanceAmount; 141 private Integer differenceMonth1LineAmount; 142 private Integer differenceMonth2LineAmount; 143 private Integer differenceMonth3LineAmount; 144 private Integer differenceMonth4LineAmount; 145 private Integer differenceMonth5LineAmount; 146 private Integer differenceMonth6LineAmount; 147 private Integer differenceMonth7LineAmount; 148 private Integer differenceMonth8LineAmount; 149 private Integer differenceMonth9LineAmount; 150 private Integer differenceMonth10LineAmount; 151 private Integer differenceMonth11LineAmount; 152 private Integer differenceMonth12LineAmount; 153 154 155 /** 156 * Gets the consHdr 157 * 158 * @return Returns the consHdr. 159 */ 160 public String getConsHdr() { 161 return consHdr; 162 } 163 164 /** 165 * Sets the consHdr 166 * 167 * @param consHdr The consHdr to set. 168 */ 169 public void setConsHdr(String consHdr) { 170 this.consHdr = consHdr; 171 } 172 173 /** 174 * Gets the fiscalYear 175 * 176 * @return Returns the fiscalYear. 177 */ 178 public String getFiscalYear() { 179 return fiscalYear; 180 } 181 182 /** 183 * Sets the fiscalYear 184 * 185 * @param fiscalYear The fiscalYear to set. 186 */ 187 public void setFiscalYear(String fiscalYear) { 188 this.fiscalYear = fiscalYear; 189 } 190 191 /** 192 * Gets the fundGroupCode 193 * 194 * @return Returns the fundGroupCode. 195 */ 196 public String getFundGroupCode() { 197 return fundGroupCode; 198 } 199 200 /** 201 * Sets the fundGroupCode 202 * 203 * @param fundGroupCode The fundGroupCode to set. 204 */ 205 public void setFundGroupCode(String fundGroupCode) { 206 this.fundGroupCode = fundGroupCode; 207 } 208 209 /** 210 * Gets the organizationCode 211 * 212 * @return Returns the organizationCode. 213 */ 214 public String getOrganizationCode() { 215 return organizationCode; 216 } 217 218 /** 219 * Sets the organizationCode 220 * 221 * @param organizationCode The organizationCode to set. 222 */ 223 public void setOrganizationCode(String organizationCode) { 224 this.organizationCode = organizationCode; 225 } 226 227 /** 228 * Gets the organizationName 229 * 230 * @return Returns the organizationName. 231 */ 232 public String getOrganizationName() { 233 return organizationName; 234 } 235 236 /** 237 * Sets the organizationName 238 * 239 * @param organizationName The organizationName to set. 240 */ 241 public void setOrganizationName(String organizationName) { 242 this.organizationName = organizationName; 243 } 244 245 /** 246 * Gets the subFundGroupCode 247 * 248 * @return Returns the subFundGroupCode. 249 */ 250 public String getSubFundGroupCode() { 251 return subFundGroupCode; 252 } 253 254 /** 255 * Sets the subFundGroupCode 256 * 257 * @param subFundGroupCode The subFundGroupCode to set. 258 */ 259 public void setSubFundGroupCode(String subFundGroupCode) { 260 this.subFundGroupCode = subFundGroupCode; 261 } 262 263 /** 264 * Gets the subFundGroupDescription 265 * 266 * @return Returns the subFundGroupDescription. 267 */ 268 public String getSubFundGroupDescription() { 269 return subFundGroupDescription; 270 } 271 272 /** 273 * Sets the subFundGroupDescription 274 * 275 * @param subFundGroupDescription The subFundGroupDescription to set. 276 */ 277 public void setSubFundGroupDescription(String subFundGroupDescription) { 278 this.subFundGroupDescription = subFundGroupDescription; 279 } 280 281 /** 282 * Gets the fundGroupName 283 * 284 * @return Returns the fundGroupName. 285 */ 286 public String getFundGroupName() { 287 return fundGroupName; 288 } 289 290 /** 291 * Sets the fundGroupName 292 * 293 * @param fundGroupName The fundGroupName to set. 294 */ 295 public void setFundGroupName(String fundGroupName) { 296 this.fundGroupName = fundGroupName; 297 } 298 299 /** 300 * Gets the chartOfAccountDescription 301 * 302 * @return Returns the chartOfAccountDescription. 303 */ 304 public String getChartOfAccountDescription() { 305 return chartOfAccountDescription; 306 } 307 308 /** 309 * Sets the chartOfAccountDescription 310 * 311 * @param chartOfAccountDescription The chartOfAccountDescription to set. 312 */ 313 public void setChartOfAccountDescription(String chartOfAccountDescription) { 314 this.chartOfAccountDescription = chartOfAccountDescription; 315 } 316 317 /** 318 * Gets the chartOfAccountsCode 319 * 320 * @return Returns the chartOfAccountsCode. 321 */ 322 public String getChartOfAccountsCode() { 323 return chartOfAccountsCode; 324 } 325 326 /** 327 * Sets the chartOfAccountsCode 328 * 329 * @param chartOfAccountsCode The chartOfAccountsCode to set. 330 */ 331 public void setChartOfAccountsCode(String chartOfAccountsCode) { 332 this.chartOfAccountsCode = chartOfAccountsCode; 333 } 334 335 /** 336 * Gets the orgChartOfAccountDescription 337 * 338 * @return Returns the orgChartOfAccountDescription. 339 */ 340 public String getOrgChartOfAccountDescription() { 341 return orgChartOfAccountDescription; 342 } 343 344 /** 345 * Sets the orgChartOfAccountDescription 346 * 347 * @param orgChartOfAccountDescription The orgChartOfAccountDescription to set. 348 */ 349 public void setOrgChartOfAccountDescription(String orgChartOfAccountDescription) { 350 this.orgChartOfAccountDescription = orgChartOfAccountDescription; 351 } 352 353 /** 354 * Gets the orgChartOfAccountsCode 355 * 356 * @return Returns the orgChartOfAccountsCode. 357 */ 358 public String getOrgChartOfAccountsCode() { 359 return orgChartOfAccountsCode; 360 } 361 362 /** 363 * Sets the orgChartOfAccountsCode 364 * 365 * @param orgChartOfAccountsCode The orgChartOfAccountsCode to set. 366 */ 367 public void setOrgChartOfAccountsCode(String orgChartOfAccountsCode) { 368 this.orgChartOfAccountsCode = orgChartOfAccountsCode; 369 } 370 371 public String getFinancialConsolidationSortCode() { 372 return financialConsolidationSortCode; 373 } 374 375 public void setFinancialConsolidationSortCode(String financialConsolidationSortCode) { 376 this.financialConsolidationSortCode = financialConsolidationSortCode; 377 } 378 379 public String getIncomeExpenseCode() { 380 return incomeExpenseCode; 381 } 382 383 public void setIncomeExpenseCode(String incomeExpenseCode) { 384 this.incomeExpenseCode = incomeExpenseCode; 385 } 386 387 public Integer getAccountLineAnnualBalanceAmount() { 388 return accountLineAnnualBalanceAmount; 389 } 390 391 public void setAccountLineAnnualBalanceAmount(Integer accountLineAnnualBalanceAmount) { 392 this.accountLineAnnualBalanceAmount = accountLineAnnualBalanceAmount; 393 } 394 395 public Integer getConsMonth10LineAmount() { 396 return consMonth10LineAmount; 397 } 398 399 public void setConsMonth10LineAmount(Integer consMonth10LineAmount) { 400 this.consMonth10LineAmount = consMonth10LineAmount; 401 } 402 403 public Integer getConsMonth11LineAmount() { 404 return consMonth11LineAmount; 405 } 406 407 public void setConsMonth11LineAmount(Integer consMonth11LineAmount) { 408 this.consMonth11LineAmount = consMonth11LineAmount; 409 } 410 411 public Integer getConsMonth12LineAmount() { 412 return consMonth12LineAmount; 413 } 414 415 public void setConsMonth12LineAmount(Integer consMonth12LineAmount) { 416 this.consMonth12LineAmount = consMonth12LineAmount; 417 } 418 419 public Integer getConsMonth1LineAmount() { 420 return consMonth1LineAmount; 421 } 422 423 public void setConsMonth1LineAmount(Integer consMonth1LineAmount) { 424 this.consMonth1LineAmount = consMonth1LineAmount; 425 } 426 427 public Integer getConsMonth2LineAmount() { 428 return consMonth2LineAmount; 429 } 430 431 public void setConsMonth2LineAmount(Integer consMonth2LineAmount) { 432 this.consMonth2LineAmount = consMonth2LineAmount; 433 } 434 435 public Integer getConsMonth3LineAmount() { 436 return consMonth3LineAmount; 437 } 438 439 public void setConsMonth3LineAmount(Integer consMonth3LineAmount) { 440 this.consMonth3LineAmount = consMonth3LineAmount; 441 } 442 443 public Integer getConsMonth4LineAmount() { 444 return consMonth4LineAmount; 445 } 446 447 public void setConsMonth4LineAmount(Integer consMonth4LineAmount) { 448 this.consMonth4LineAmount = consMonth4LineAmount; 449 } 450 451 public Integer getConsMonth5LineAmount() { 452 return consMonth5LineAmount; 453 } 454 455 public void setConsMonth5LineAmount(Integer consMonth5LineAmount) { 456 this.consMonth5LineAmount = consMonth5LineAmount; 457 } 458 459 public Integer getConsMonth6LineAmount() { 460 return consMonth6LineAmount; 461 } 462 463 public void setConsMonth6LineAmount(Integer consMonth6LineAmount) { 464 this.consMonth6LineAmount = consMonth6LineAmount; 465 } 466 467 public Integer getConsMonth7LineAmount() { 468 return consMonth7LineAmount; 469 } 470 471 public void setConsMonth7LineAmount(Integer consMonth7LineAmount) { 472 this.consMonth7LineAmount = consMonth7LineAmount; 473 } 474 475 public Integer getConsMonth8LineAmount() { 476 return consMonth8LineAmount; 477 } 478 479 public void setConsMonth8LineAmount(Integer consMonth8LineAmount) { 480 this.consMonth8LineAmount = consMonth8LineAmount; 481 } 482 483 public Integer getConsMonth9LineAmount() { 484 return consMonth9LineAmount; 485 } 486 487 public void setConsMonth9LineAmount(Integer consMonth9LineAmount) { 488 this.consMonth9LineAmount = consMonth9LineAmount; 489 } 490 491 public String getConsTotalDescription() { 492 return consTotalDescription; 493 } 494 495 public void setConsTotalDescription(String consTotalDescription) { 496 this.consTotalDescription = consTotalDescription; 497 } 498 499 public Integer getDifferenceMonth10LineAmount() { 500 return differenceMonth10LineAmount; 501 } 502 503 public void setDifferenceMonth10LineAmount(Integer differenceMonth10LineAmount) { 504 this.differenceMonth10LineAmount = differenceMonth10LineAmount; 505 } 506 507 public Integer getDifferenceMonth11LineAmount() { 508 return differenceMonth11LineAmount; 509 } 510 511 public void setDifferenceMonth11LineAmount(Integer differenceMonth11LineAmount) { 512 this.differenceMonth11LineAmount = differenceMonth11LineAmount; 513 } 514 515 public Integer getDifferenceMonth12LineAmount() { 516 return differenceMonth12LineAmount; 517 } 518 519 public void setDifferenceMonth12LineAmount(Integer differenceMonth12LineAmount) { 520 this.differenceMonth12LineAmount = differenceMonth12LineAmount; 521 } 522 523 public Integer getDifferenceMonth1LineAmount() { 524 return differenceMonth1LineAmount; 525 } 526 527 public void setDifferenceMonth1LineAmount(Integer differenceMonth1LineAmount) { 528 this.differenceMonth1LineAmount = differenceMonth1LineAmount; 529 } 530 531 public Integer getDifferenceMonth2LineAmount() { 532 return differenceMonth2LineAmount; 533 } 534 535 public void setDifferenceMonth2LineAmount(Integer differenceMonth2LineAmount) { 536 this.differenceMonth2LineAmount = differenceMonth2LineAmount; 537 } 538 539 public Integer getDifferenceMonth3LineAmount() { 540 return differenceMonth3LineAmount; 541 } 542 543 public void setDifferenceMonth3LineAmount(Integer differenceMonth3LineAmount) { 544 this.differenceMonth3LineAmount = differenceMonth3LineAmount; 545 } 546 547 public Integer getDifferenceMonth4LineAmount() { 548 return differenceMonth4LineAmount; 549 } 550 551 public void setDifferenceMonth4LineAmount(Integer differenceMonth4LineAmount) { 552 this.differenceMonth4LineAmount = differenceMonth4LineAmount; 553 } 554 555 public Integer getDifferenceMonth5LineAmount() { 556 return differenceMonth5LineAmount; 557 } 558 559 public void setDifferenceMonth5LineAmount(Integer differenceMonth5LineAmount) { 560 this.differenceMonth5LineAmount = differenceMonth5LineAmount; 561 } 562 563 public Integer getDifferenceMonth6LineAmount() { 564 return differenceMonth6LineAmount; 565 } 566 567 public void setDifferenceMonth6LineAmount(Integer differenceMonth6LineAmount) { 568 this.differenceMonth6LineAmount = differenceMonth6LineAmount; 569 } 570 571 public Integer getDifferenceMonth7LineAmount() { 572 return differenceMonth7LineAmount; 573 } 574 575 public void setDifferenceMonth7LineAmount(Integer differenceMonth7LineAmount) { 576 this.differenceMonth7LineAmount = differenceMonth7LineAmount; 577 } 578 579 public Integer getDifferenceMonth8LineAmount() { 580 return differenceMonth8LineAmount; 581 } 582 583 public void setDifferenceMonth8LineAmount(Integer differenceMonth8LineAmount) { 584 this.differenceMonth8LineAmount = differenceMonth8LineAmount; 585 } 586 587 public Integer getDifferenceMonth9LineAmount() { 588 return differenceMonth9LineAmount; 589 } 590 591 public void setDifferenceMonth9LineAmount(Integer differenceMonth9LineAmount) { 592 this.differenceMonth9LineAmount = differenceMonth9LineAmount; 593 } 594 595 public Integer getExpMonth10LineAmount() { 596 return expMonth10LineAmount; 597 } 598 599 public void setExpMonth10LineAmount(Integer expMonth10LineAmount) { 600 this.expMonth10LineAmount = expMonth10LineAmount; 601 } 602 603 public Integer getExpMonth11LineAmount() { 604 return expMonth11LineAmount; 605 } 606 607 public void setExpMonth11LineAmount(Integer expMonth11LineAmount) { 608 this.expMonth11LineAmount = expMonth11LineAmount; 609 } 610 611 public Integer getExpMonth12LineAmount() { 612 return expMonth12LineAmount; 613 } 614 615 public void setExpMonth12LineAmount(Integer expMonth12LineAmount) { 616 this.expMonth12LineAmount = expMonth12LineAmount; 617 } 618 619 public Integer getExpMonth1LineAmount() { 620 return expMonth1LineAmount; 621 } 622 623 public void setExpMonth1LineAmount(Integer expMonth1LineAmount) { 624 this.expMonth1LineAmount = expMonth1LineAmount; 625 } 626 627 public Integer getExpMonth2LineAmount() { 628 return expMonth2LineAmount; 629 } 630 631 public void setExpMonth2LineAmount(Integer expMonth2LineAmount) { 632 this.expMonth2LineAmount = expMonth2LineAmount; 633 } 634 635 public Integer getExpMonth3LineAmount() { 636 return expMonth3LineAmount; 637 } 638 639 public void setExpMonth3LineAmount(Integer expMonth3LineAmount) { 640 this.expMonth3LineAmount = expMonth3LineAmount; 641 } 642 643 public Integer getExpMonth4LineAmount() { 644 return expMonth4LineAmount; 645 } 646 647 public void setExpMonth4LineAmount(Integer expMonth4LineAmount) { 648 this.expMonth4LineAmount = expMonth4LineAmount; 649 } 650 651 public Integer getExpMonth5LineAmount() { 652 return expMonth5LineAmount; 653 } 654 655 public void setExpMonth5LineAmount(Integer expMonth5LineAmount) { 656 this.expMonth5LineAmount = expMonth5LineAmount; 657 } 658 659 public Integer getExpMonth6LineAmount() { 660 return expMonth6LineAmount; 661 } 662 663 public void setExpMonth6LineAmount(Integer expMonth6LineAmount) { 664 this.expMonth6LineAmount = expMonth6LineAmount; 665 } 666 667 public Integer getExpMonth7LineAmount() { 668 return expMonth7LineAmount; 669 } 670 671 public void setExpMonth7LineAmount(Integer expMonth7LineAmount) { 672 this.expMonth7LineAmount = expMonth7LineAmount; 673 } 674 675 public Integer getExpMonth8LineAmount() { 676 return expMonth8LineAmount; 677 } 678 679 public void setExpMonth8LineAmount(Integer expMonth8LineAmount) { 680 this.expMonth8LineAmount = expMonth8LineAmount; 681 } 682 683 public Integer getExpMonth9LineAmount() { 684 return expMonth9LineAmount; 685 } 686 687 public void setExpMonth9LineAmount(Integer expMonth9LineAmount) { 688 this.expMonth9LineAmount = expMonth9LineAmount; 689 } 690 691 692 public Integer getFinancialDocumentMonth10LineAmount() { 693 return financialDocumentMonth10LineAmount; 694 } 695 696 public void setFinancialDocumentMonth10LineAmount(Integer financialDocumentMonth10LineAmount) { 697 this.financialDocumentMonth10LineAmount = financialDocumentMonth10LineAmount; 698 } 699 700 public Integer getFinancialDocumentMonth11LineAmount() { 701 return financialDocumentMonth11LineAmount; 702 } 703 704 public void setFinancialDocumentMonth11LineAmount(Integer financialDocumentMonth11LineAmount) { 705 this.financialDocumentMonth11LineAmount = financialDocumentMonth11LineAmount; 706 } 707 708 public Integer getFinancialDocumentMonth12LineAmount() { 709 return financialDocumentMonth12LineAmount; 710 } 711 712 public void setFinancialDocumentMonth12LineAmount(Integer financialDocumentMonth12LineAmount) { 713 this.financialDocumentMonth12LineAmount = financialDocumentMonth12LineAmount; 714 } 715 716 public Integer getFinancialDocumentMonth1LineAmount() { 717 return financialDocumentMonth1LineAmount; 718 } 719 720 public void setFinancialDocumentMonth1LineAmount(Integer financialDocumentMonth1LineAmount) { 721 this.financialDocumentMonth1LineAmount = financialDocumentMonth1LineAmount; 722 } 723 724 public Integer getFinancialDocumentMonth2LineAmount() { 725 return financialDocumentMonth2LineAmount; 726 } 727 728 public void setFinancialDocumentMonth2LineAmount(Integer financialDocumentMonth2LineAmount) { 729 this.financialDocumentMonth2LineAmount = financialDocumentMonth2LineAmount; 730 } 731 732 public Integer getFinancialDocumentMonth3LineAmount() { 733 return financialDocumentMonth3LineAmount; 734 } 735 736 public void setFinancialDocumentMonth3LineAmount(Integer financialDocumentMonth3LineAmount) { 737 this.financialDocumentMonth3LineAmount = financialDocumentMonth3LineAmount; 738 } 739 740 public Integer getFinancialDocumentMonth4LineAmount() { 741 return financialDocumentMonth4LineAmount; 742 } 743 744 public void setFinancialDocumentMonth4LineAmount(Integer financialDocumentMonth4LineAmount) { 745 this.financialDocumentMonth4LineAmount = financialDocumentMonth4LineAmount; 746 } 747 748 public Integer getFinancialDocumentMonth5LineAmount() { 749 return financialDocumentMonth5LineAmount; 750 } 751 752 public void setFinancialDocumentMonth5LineAmount(Integer financialDocumentMonth5LineAmount) { 753 this.financialDocumentMonth5LineAmount = financialDocumentMonth5LineAmount; 754 } 755 756 public Integer getFinancialDocumentMonth6LineAmount() { 757 return financialDocumentMonth6LineAmount; 758 } 759 760 public void setFinancialDocumentMonth6LineAmount(Integer financialDocumentMonth6LineAmount) { 761 this.financialDocumentMonth6LineAmount = financialDocumentMonth6LineAmount; 762 } 763 764 public Integer getFinancialDocumentMonth7LineAmount() { 765 return financialDocumentMonth7LineAmount; 766 } 767 768 public void setFinancialDocumentMonth7LineAmount(Integer financialDocumentMonth7LineAmount) { 769 this.financialDocumentMonth7LineAmount = financialDocumentMonth7LineAmount; 770 } 771 772 public Integer getFinancialDocumentMonth8LineAmount() { 773 return financialDocumentMonth8LineAmount; 774 } 775 776 public void setFinancialDocumentMonth8LineAmount(Integer financialDocumentMonth8LineAmount) { 777 this.financialDocumentMonth8LineAmount = financialDocumentMonth8LineAmount; 778 } 779 780 public Integer getFinancialDocumentMonth9LineAmount() { 781 return financialDocumentMonth9LineAmount; 782 } 783 784 public void setFinancialDocumentMonth9LineAmount(Integer financialDocumentMonth9LineAmount) { 785 this.financialDocumentMonth9LineAmount = financialDocumentMonth9LineAmount; 786 } 787 788 public String getFinancialLevelSortCode() { 789 return financialLevelSortCode; 790 } 791 792 public void setFinancialLevelSortCode(String financialLevelSortCode) { 793 this.financialLevelSortCode = financialLevelSortCode; 794 } 795 796 public String getFinancialObjectCode() { 797 return financialObjectCode; 798 } 799 800 public void setFinancialObjectCode(String financialObjectCode) { 801 this.financialObjectCode = financialObjectCode; 802 } 803 804 public String getFinancialSubObjectCode() { 805 return financialSubObjectCode; 806 } 807 808 public void setFinancialSubObjectCode(String financialSubObjectCode) { 809 this.financialSubObjectCode = financialSubObjectCode; 810 } 811 812 public Integer getLevelMonth10LineAmount() { 813 return levelMonth10LineAmount; 814 } 815 816 public void setLevelMonth10LineAmount(Integer levelMonth10LineAmount) { 817 this.levelMonth10LineAmount = levelMonth10LineAmount; 818 } 819 820 public Integer getLevelMonth11LineAmount() { 821 return levelMonth11LineAmount; 822 } 823 824 public void setLevelMonth11LineAmount(Integer levelMonth11LineAmount) { 825 this.levelMonth11LineAmount = levelMonth11LineAmount; 826 } 827 828 public Integer getLevelMonth12LineAmount() { 829 return levelMonth12LineAmount; 830 } 831 832 public void setLevelMonth12LineAmount(Integer levelMonth12LineAmount) { 833 this.levelMonth12LineAmount = levelMonth12LineAmount; 834 } 835 836 public Integer getLevelMonth1LineAmount() { 837 return levelMonth1LineAmount; 838 } 839 840 public void setLevelMonth1LineAmount(Integer levelMonth1LineAmount) { 841 this.levelMonth1LineAmount = levelMonth1LineAmount; 842 } 843 844 public Integer getLevelMonth2LineAmount() { 845 return levelMonth2LineAmount; 846 } 847 848 public void setLevelMonth2LineAmount(Integer levelMonth2LineAmount) { 849 this.levelMonth2LineAmount = levelMonth2LineAmount; 850 } 851 852 public Integer getLevelMonth3LineAmount() { 853 return levelMonth3LineAmount; 854 } 855 856 public void setLevelMonth3LineAmount(Integer levelMonth3LineAmount) { 857 this.levelMonth3LineAmount = levelMonth3LineAmount; 858 } 859 860 public Integer getLevelMonth4LineAmount() { 861 return levelMonth4LineAmount; 862 } 863 864 public void setLevelMonth4LineAmount(Integer levelMonth4LineAmount) { 865 this.levelMonth4LineAmount = levelMonth4LineAmount; 866 } 867 868 public Integer getLevelMonth5LineAmount() { 869 return levelMonth5LineAmount; 870 } 871 872 public void setLevelMonth5LineAmount(Integer levelMonth5LineAmount) { 873 this.levelMonth5LineAmount = levelMonth5LineAmount; 874 } 875 876 public Integer getLevelMonth6LineAmount() { 877 return levelMonth6LineAmount; 878 } 879 880 public void setLevelMonth6LineAmount(Integer levelMonth6LineAmount) { 881 this.levelMonth6LineAmount = levelMonth6LineAmount; 882 } 883 884 public Integer getLevelMonth7LineAmount() { 885 return levelMonth7LineAmount; 886 } 887 888 public void setLevelMonth7LineAmount(Integer levelMonth7LineAmount) { 889 this.levelMonth7LineAmount = levelMonth7LineAmount; 890 } 891 892 public Integer getLevelMonth8LineAmount() { 893 return levelMonth8LineAmount; 894 } 895 896 public void setLevelMonth8LineAmount(Integer levelMonth8LineAmount) { 897 this.levelMonth8LineAmount = levelMonth8LineAmount; 898 } 899 900 public Integer getLevelMonth9LineAmount() { 901 return levelMonth9LineAmount; 902 } 903 904 public void setLevelMonth9LineAmount(Integer levelMonth9LineAmount) { 905 this.levelMonth9LineAmount = levelMonth9LineAmount; 906 } 907 908 public String getLevelTotalDescription() { 909 return levelTotalDescription; 910 } 911 912 public void setLevelTotalDescription(String levelTotalDescription) { 913 this.levelTotalDescription = levelTotalDescription; 914 } 915 916 public Integer getRevMonth10LineAmount() { 917 return revMonth10LineAmount; 918 } 919 920 public void setRevMonth10LineAmount(Integer revMonth10LineAmount) { 921 this.revMonth10LineAmount = revMonth10LineAmount; 922 } 923 924 public Integer getRevMonth11LineAmount() { 925 return revMonth11LineAmount; 926 } 927 928 public void setRevMonth11LineAmount(Integer revMonth11LineAmount) { 929 this.revMonth11LineAmount = revMonth11LineAmount; 930 } 931 932 public Integer getRevMonth12LineAmount() { 933 return revMonth12LineAmount; 934 } 935 936 public void setRevMonth12LineAmount(Integer revMonth12LineAmount) { 937 this.revMonth12LineAmount = revMonth12LineAmount; 938 } 939 940 public Integer getRevMonth1LineAmount() { 941 return revMonth1LineAmount; 942 } 943 944 public void setRevMonth1LineAmount(Integer revMonth1LineAmount) { 945 this.revMonth1LineAmount = revMonth1LineAmount; 946 } 947 948 public Integer getRevMonth2LineAmount() { 949 return revMonth2LineAmount; 950 } 951 952 public void setRevMonth2LineAmount(Integer revMonth2LineAmount) { 953 this.revMonth2LineAmount = revMonth2LineAmount; 954 } 955 956 public Integer getRevMonth3LineAmount() { 957 return revMonth3LineAmount; 958 } 959 960 public void setRevMonth3LineAmount(Integer revMonth3LineAmount) { 961 this.revMonth3LineAmount = revMonth3LineAmount; 962 } 963 964 public Integer getRevMonth4LineAmount() { 965 return revMonth4LineAmount; 966 } 967 968 public void setRevMonth4LineAmount(Integer revMonth4LineAmount) { 969 this.revMonth4LineAmount = revMonth4LineAmount; 970 } 971 972 public Integer getRevMonth5LineAmount() { 973 return revMonth5LineAmount; 974 } 975 976 public void setRevMonth5LineAmount(Integer revMonth5LineAmount) { 977 this.revMonth5LineAmount = revMonth5LineAmount; 978 } 979 980 public Integer getRevMonth6LineAmount() { 981 return revMonth6LineAmount; 982 } 983 984 public void setRevMonth6LineAmount(Integer revMonth6LineAmount) { 985 this.revMonth6LineAmount = revMonth6LineAmount; 986 } 987 988 public Integer getRevMonth7LineAmount() { 989 return revMonth7LineAmount; 990 } 991 992 public void setRevMonth7LineAmount(Integer revMonth7LineAmount) { 993 this.revMonth7LineAmount = revMonth7LineAmount; 994 } 995 996 public Integer getRevMonth8LineAmount() { 997 return revMonth8LineAmount; 998 } 999 1000 public void setRevMonth8LineAmount(Integer revMonth8LineAmount) { 1001 this.revMonth8LineAmount = revMonth8LineAmount; 1002 } 1003 1004 public Integer getRevMonth9LineAmount() { 1005 return revMonth9LineAmount; 1006 } 1007 1008 public void setRevMonth9LineAmount(Integer revMonth9LineAmount) { 1009 this.revMonth9LineAmount = revMonth9LineAmount; 1010 } 1011 1012 public Integer getTypeMonth10LineAmount() { 1013 return typeMonth10LineAmount; 1014 } 1015 1016 public void setTypeMonth10LineAmount(Integer typeMonth10LineAmount) { 1017 this.typeMonth10LineAmount = typeMonth10LineAmount; 1018 } 1019 1020 public Integer getTypeMonth11LineAmount() { 1021 return typeMonth11LineAmount; 1022 } 1023 1024 public void setTypeMonth11LineAmount(Integer typeMonth11LineAmount) { 1025 this.typeMonth11LineAmount = typeMonth11LineAmount; 1026 } 1027 1028 public Integer getTypeMonth12LineAmount() { 1029 return typeMonth12LineAmount; 1030 } 1031 1032 public void setTypeMonth12LineAmount(Integer typeMonth12LineAmount) { 1033 this.typeMonth12LineAmount = typeMonth12LineAmount; 1034 } 1035 1036 public Integer getTypeMonth1LineAmount() { 1037 return typeMonth1LineAmount; 1038 } 1039 1040 public void setTypeMonth1LineAmount(Integer typeMonth1LineAmount) { 1041 this.typeMonth1LineAmount = typeMonth1LineAmount; 1042 } 1043 1044 public Integer getTypeMonth2LineAmount() { 1045 return typeMonth2LineAmount; 1046 } 1047 1048 public void setTypeMonth2LineAmount(Integer typeMonth2LineAmount) { 1049 this.typeMonth2LineAmount = typeMonth2LineAmount; 1050 } 1051 1052 public Integer getTypeMonth3LineAmount() { 1053 return typeMonth3LineAmount; 1054 } 1055 1056 public void setTypeMonth3LineAmount(Integer typeMonth3LineAmount) { 1057 this.typeMonth3LineAmount = typeMonth3LineAmount; 1058 } 1059 1060 public Integer getTypeMonth4LineAmount() { 1061 return typeMonth4LineAmount; 1062 } 1063 1064 public void setTypeMonth4LineAmount(Integer typeMonth4LineAmount) { 1065 this.typeMonth4LineAmount = typeMonth4LineAmount; 1066 } 1067 1068 public Integer getTypeMonth5LineAmount() { 1069 return typeMonth5LineAmount; 1070 } 1071 1072 public void setTypeMonth5LineAmount(Integer typeMonth5LineAmount) { 1073 this.typeMonth5LineAmount = typeMonth5LineAmount; 1074 } 1075 1076 public Integer getTypeMonth6LineAmount() { 1077 return typeMonth6LineAmount; 1078 } 1079 1080 public void setTypeMonth6LineAmount(Integer typeMonth6LineAmount) { 1081 this.typeMonth6LineAmount = typeMonth6LineAmount; 1082 } 1083 1084 public Integer getTypeMonth7LineAmount() { 1085 return typeMonth7LineAmount; 1086 } 1087 1088 public void setTypeMonth7LineAmount(Integer typeMonth7LineAmount) { 1089 this.typeMonth7LineAmount = typeMonth7LineAmount; 1090 } 1091 1092 public Integer getTypeMonth8LineAmount() { 1093 return typeMonth8LineAmount; 1094 } 1095 1096 public void setTypeMonth8LineAmount(Integer typeMonth8LineAmount) { 1097 this.typeMonth8LineAmount = typeMonth8LineAmount; 1098 } 1099 1100 public Integer getTypeMonth9LineAmount() { 1101 return typeMonth9LineAmount; 1102 } 1103 1104 public void setTypeMonth9LineAmount(Integer typeMonth9LineAmount) { 1105 this.typeMonth9LineAmount = typeMonth9LineAmount; 1106 } 1107 1108 public String getTypeTotalDescription() { 1109 return typeTotalDescription; 1110 } 1111 1112 public void setTypeTotalDescription(String typeTotalDescription) { 1113 this.typeTotalDescription = typeTotalDescription; 1114 } 1115 1116 public Integer getConsAccountLineAnnualBalanceAmount() { 1117 return consAccountLineAnnualBalanceAmount; 1118 } 1119 1120 public void setConsAccountLineAnnualBalanceAmount(Integer consAccountLineAnnualBalanceAmount) { 1121 this.consAccountLineAnnualBalanceAmount = consAccountLineAnnualBalanceAmount; 1122 } 1123 1124 public Integer getDifferenceAccountLineAnnualBalanceAmount() { 1125 return differenceAccountLineAnnualBalanceAmount; 1126 } 1127 1128 public void setDifferenceAccountLineAnnualBalanceAmount(Integer differenceAccountLineAnnualBalanceAmount) { 1129 this.differenceAccountLineAnnualBalanceAmount = differenceAccountLineAnnualBalanceAmount; 1130 } 1131 1132 public Integer getExpAccountLineAnnualBalanceAmount() { 1133 return expAccountLineAnnualBalanceAmount; 1134 } 1135 1136 public void setExpAccountLineAnnualBalanceAmount(Integer expAccountLineAnnualBalanceAmount) { 1137 this.expAccountLineAnnualBalanceAmount = expAccountLineAnnualBalanceAmount; 1138 } 1139 1140 public Integer getLevelAccountLineAnnualBalanceAmount() { 1141 return levelAccountLineAnnualBalanceAmount; 1142 } 1143 1144 public void setLevelAccountLineAnnualBalanceAmount(Integer levelAccountLineAnnualBalanceAmount) { 1145 this.levelAccountLineAnnualBalanceAmount = levelAccountLineAnnualBalanceAmount; 1146 } 1147 1148 public Integer getRevAccountLineAnnualBalanceAmount() { 1149 return revAccountLineAnnualBalanceAmount; 1150 } 1151 1152 public void setRevAccountLineAnnualBalanceAmount(Integer revAccountLineAnnualBalanceAmount) { 1153 this.revAccountLineAnnualBalanceAmount = revAccountLineAnnualBalanceAmount; 1154 } 1155 1156 public Integer getTypeAccountLineAnnualBalanceAmount() { 1157 return typeAccountLineAnnualBalanceAmount; 1158 } 1159 1160 public void setTypeAccountLineAnnualBalanceAmount(Integer typeAccountLineAnnualBalanceAmount) { 1161 this.typeAccountLineAnnualBalanceAmount = typeAccountLineAnnualBalanceAmount; 1162 } 1163 1164 public String getFinancialObjectCodeName() { 1165 return financialObjectCodeName; 1166 } 1167 1168 public void setFinancialObjectCodeName(String financialObjectCodeName) { 1169 this.financialObjectCodeName = financialObjectCodeName; 1170 } 1171 1172 }