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 import java.math.BigDecimal; 019 020 /** 021 * Budget Construction Organization Account Summary Report Business Object. 022 */ 023 public class BudgetConstructionOrgObjectSummaryReport { 024 025 // Header parts 026 private String fiscalYear; 027 private String orgChartOfAccountsCode; 028 private String orgChartOfAccountDescription; 029 private String chartOfAccountsCode; 030 private String chartOfAccountDescription; 031 private String organizationCode; 032 private String organizationName; 033 private String consHdr; 034 private String fundGroupCode; 035 private String fundGroupName; 036 private String subFundGroupCode; 037 private String subFundGroupDescription; 038 private String baseFy; 039 private String reqFy; 040 041 private String header1; 042 private String header2; 043 private String header2a; 044 private String header3; 045 private String header31; 046 private String header4; 047 private String header40; 048 private String header5; 049 private String header6; 050 051 // Groups 052 private String financialObjectLevelCode; 053 private String incomeExpenseCode; 054 private String financialConsolidationSortCode; 055 private String financialLevelSortCode; 056 057 // Body parts 058 private String financialObjectCode; 059 private String financialObjectName; 060 061 //when the values are zero, below fields should be blank, so make them as string. 062 private BigDecimal positionCsfLeaveFteQuantity; 063 private BigDecimal csfFullTimeEmploymentQuantity; 064 private Integer financialBeginningBalanceLineAmount = new Integer(0); 065 private BigDecimal appointmentRequestedCsfFteQuantity; 066 private BigDecimal appointmentRequestedFteQuantity; 067 private Integer accountLineAnnualBalanceAmount = new Integer(0); 068 private Integer amountChange = new Integer(0); 069 private BigDecimal percentChange = BigDecimal.ZERO; 070 071 // Total parts 072 073 private String totalLevelDescription; 074 075 private BigDecimal totalLevelPositionCsfLeaveFteQuantity; 076 private BigDecimal totalLevelPositionCsfFullTimeEmploymentQuantity; 077 private Integer totalLevelFinancialBeginningBalanceLineAmount; 078 private BigDecimal totalLevelAppointmentRequestedCsfFteQuantity; 079 private BigDecimal totalLevelAppointmentRequestedFteQuantity; 080 private Integer totalLevelAccountLineAnnualBalanceAmount; 081 private Integer totalLevelAmountChange; 082 private BigDecimal totalLevelPercentChange; 083 084 private String totalConsolidationDescription; 085 086 private BigDecimal totalConsolidationPositionCsfLeaveFteQuantity; 087 private BigDecimal totalConsolidationPositionCsfFullTimeEmploymentQuantity; 088 private Integer totalConsolidationFinancialBeginningBalanceLineAmount; 089 private BigDecimal totalConsolidationAppointmentRequestedCsfFteQuantity; 090 private BigDecimal totalConsolidationAppointmentRequestedFteQuantity; 091 private Integer totalConsolidationAccountLineAnnualBalanceAmount; 092 private Integer totalConsolidationAmountChange; 093 private BigDecimal totalConsolidationPercentChange; 094 095 private String grossDescription; 096 private Integer grossFinancialBeginningBalanceLineAmount; 097 private Integer grossAccountLineAnnualBalanceAmount; 098 private Integer grossAmountChange; 099 private BigDecimal grossPercentChange; 100 101 private String typeDesc; 102 private BigDecimal typePositionCsfLeaveFteQuantity; 103 private BigDecimal typePositionCsfFullTimeEmploymentQuantity; 104 private Integer typeFinancialBeginningBalanceLineAmount; 105 private BigDecimal typeAppointmentRequestedCsfFteQuantity; 106 private BigDecimal typeAppointmentRequestedFteQuantity; 107 private Integer typeAccountLineAnnualBalanceAmount; 108 private Integer typeAmountChange; 109 private BigDecimal typePercentChange; 110 111 private String totalSubFundGroupDesc; 112 113 private Integer revenueFinancialBeginningBalanceLineAmount; 114 private Integer revenueAccountLineAnnualBalanceAmount; 115 private Integer revenueAmountChange; 116 private BigDecimal revenuePercentChange; 117 118 private Integer expenditureFinancialBeginningBalanceLineAmount; 119 private Integer expenditureAccountLineAnnualBalanceAmount; 120 private Integer expenditureAmountChange; 121 private BigDecimal expenditurePercentChange; 122 123 private Integer differenceFinancialBeginningBalanceLineAmount; 124 private Integer differenceAccountLineAnnualBalanceAmount; 125 private Integer differenceAmountChange; 126 private BigDecimal differencePercentChange; 127 128 129 /** 130 * Gets the amountChange 131 * 132 * @return Returns the amountChange. 133 */ 134 public Integer getAmountChange() { 135 return amountChange; 136 } 137 138 /** 139 * Sets the amountChange 140 * 141 * @param amountChange The amountChange to set. 142 */ 143 public void setAmountChange(Integer amountChange) { 144 this.amountChange = amountChange; 145 } 146 147 /** 148 * Gets the baseFy 149 * 150 * @return Returns the baseFy. 151 */ 152 public String getBaseFy() { 153 return baseFy; 154 } 155 156 /** 157 * Sets the baseFy 158 * 159 * @param baseFy The baseFy to set. 160 */ 161 public void setBaseFy(String baseFy) { 162 this.baseFy = baseFy; 163 } 164 165 /** 166 * Gets the consHdr 167 * 168 * @return Returns the consHdr. 169 */ 170 public String getConsHdr() { 171 return consHdr; 172 } 173 174 /** 175 * Sets the consHdr 176 * 177 * @param consHdr The consHdr to set. 178 */ 179 public void setConsHdr(String consHdr) { 180 this.consHdr = consHdr; 181 } 182 183 /** 184 * Gets the fiscalYear 185 * 186 * @return Returns the fiscalYear. 187 */ 188 public String getFiscalYear() { 189 return fiscalYear; 190 } 191 192 /** 193 * Sets the fiscalYear 194 * 195 * @param fiscalYear The fiscalYear to set. 196 */ 197 public void setFiscalYear(String fiscalYear) { 198 this.fiscalYear = fiscalYear; 199 } 200 201 /** 202 * Gets the fundGroupCode 203 * 204 * @return Returns the fundGroupCode. 205 */ 206 public String getFundGroupCode() { 207 return fundGroupCode; 208 } 209 210 /** 211 * Sets the fundGroupCode 212 * 213 * @param fundGroupCode The fundGroupCode to set. 214 */ 215 public void setFundGroupCode(String fundGroupCode) { 216 this.fundGroupCode = fundGroupCode; 217 } 218 219 /** 220 * Gets the header1 221 * 222 * @return Returns the header1. 223 */ 224 public String getHeader1() { 225 return header1; 226 } 227 228 /** 229 * Sets the header1 230 * 231 * @param header1 The header1 to set. 232 */ 233 public void setHeader1(String header1) { 234 this.header1 = header1; 235 } 236 237 /** 238 * Gets the header2 239 * 240 * @return Returns the header2. 241 */ 242 public String getHeader2() { 243 return header2; 244 } 245 246 /** 247 * Sets the header2 248 * 249 * @param header2 The header2 to set. 250 */ 251 public void setHeader2(String header2) { 252 this.header2 = header2; 253 } 254 255 /** 256 * Gets the header3 257 * 258 * @return Returns the header3. 259 */ 260 public String getHeader3() { 261 return header3; 262 } 263 264 /** 265 * Sets the header3 266 * 267 * @param header3 The header3 to set. 268 */ 269 public void setHeader3(String header3) { 270 this.header3 = header3; 271 } 272 273 /** 274 * Gets the header4 275 * 276 * @return Returns the header4. 277 */ 278 public String getHeader4() { 279 return header4; 280 } 281 282 /** 283 * Sets the header4 284 * 285 * @param header4 The header4 to set. 286 */ 287 public void setHeader4(String header4) { 288 this.header4 = header4; 289 } 290 291 /** 292 * Gets the header5 293 * 294 * @return Returns the header5. 295 */ 296 public String getHeader5() { 297 return header5; 298 } 299 300 /** 301 * Sets the header5 302 * 303 * @param header5 The header5 to set. 304 */ 305 public void setHeader5(String header5) { 306 this.header5 = header5; 307 } 308 309 /** 310 * Gets the header6 311 * 312 * @return Returns the header6. 313 */ 314 public String getHeader6() { 315 return header6; 316 } 317 318 /** 319 * Sets the header6 320 * 321 * @param header6 The header6 to set. 322 */ 323 public void setHeader6(String header6) { 324 this.header6 = header6; 325 } 326 327 /** 328 * Gets the organizationCode 329 * 330 * @return Returns the organizationCode. 331 */ 332 public String getOrganizationCode() { 333 return organizationCode; 334 } 335 336 /** 337 * Sets the organizationCode 338 * 339 * @param organizationCode The organizationCode to set. 340 */ 341 public void setOrganizationCode(String organizationCode) { 342 this.organizationCode = organizationCode; 343 } 344 345 /** 346 * Gets the organizationName 347 * 348 * @return Returns the organizationName. 349 */ 350 public String getOrganizationName() { 351 return organizationName; 352 } 353 354 /** 355 * Sets the organizationName 356 * 357 * @param organizationName The organizationName to set. 358 */ 359 public void setOrganizationName(String organizationName) { 360 this.organizationName = organizationName; 361 } 362 363 /** 364 * Gets the percentChange 365 * 366 * @return Returns the percentChange. 367 */ 368 public BigDecimal getPercentChange() { 369 return percentChange; 370 } 371 372 /** 373 * Sets the percentChange 374 * 375 * @param percentChange The percentChange to set. 376 */ 377 public void setPercentChange(BigDecimal percentChange) { 378 this.percentChange = percentChange; 379 } 380 381 /** 382 * Gets the reqFy 383 * 384 * @return Returns the reqFy. 385 */ 386 public String getReqFy() { 387 return reqFy; 388 } 389 390 /** 391 * Sets the reqFy 392 * 393 * @param reqFy The reqFy to set. 394 */ 395 public void setReqFy(String reqFy) { 396 this.reqFy = reqFy; 397 } 398 399 /** 400 * Gets the subFundGroupCode 401 * 402 * @return Returns the subFundGroupCode. 403 */ 404 public String getSubFundGroupCode() { 405 return subFundGroupCode; 406 } 407 408 /** 409 * Sets the subFundGroupCode 410 * 411 * @param subFundGroupCode The subFundGroupCode to set. 412 */ 413 public void setSubFundGroupCode(String subFundGroupCode) { 414 this.subFundGroupCode = subFundGroupCode; 415 } 416 417 /** 418 * Gets the subFundGroupDescription 419 * 420 * @return Returns the subFundGroupDescription. 421 */ 422 public String getSubFundGroupDescription() { 423 return subFundGroupDescription; 424 } 425 426 /** 427 * Sets the subFundGroupDescription 428 * 429 * @param subFundGroupDescription The subFundGroupDescription to set. 430 */ 431 public void setSubFundGroupDescription(String subFundGroupDescription) { 432 this.subFundGroupDescription = subFundGroupDescription; 433 } 434 435 /** 436 * Gets the fundGroupName 437 * 438 * @return Returns the fundGroupName. 439 */ 440 public String getFundGroupName() { 441 return fundGroupName; 442 } 443 444 /** 445 * Sets the fundGroupName 446 * 447 * @param fundGroupName The fundGroupName to set. 448 */ 449 public void setFundGroupName(String fundGroupName) { 450 this.fundGroupName = fundGroupName; 451 } 452 453 /** 454 * Gets the chartOfAccountDescription 455 * 456 * @return Returns the chartOfAccountDescription. 457 */ 458 public String getChartOfAccountDescription() { 459 return chartOfAccountDescription; 460 } 461 462 /** 463 * Sets the chartOfAccountDescription 464 * 465 * @param chartOfAccountDescription The chartOfAccountDescription to set. 466 */ 467 public void setChartOfAccountDescription(String chartOfAccountDescription) { 468 this.chartOfAccountDescription = chartOfAccountDescription; 469 } 470 471 /** 472 * Gets the chartOfAccountsCode 473 * 474 * @return Returns the chartOfAccountsCode. 475 */ 476 public String getChartOfAccountsCode() { 477 return chartOfAccountsCode; 478 } 479 480 /** 481 * Sets the chartOfAccountsCode 482 * 483 * @param chartOfAccountsCode The chartOfAccountsCode to set. 484 */ 485 public void setChartOfAccountsCode(String chartOfAccountsCode) { 486 this.chartOfAccountsCode = chartOfAccountsCode; 487 } 488 489 /** 490 * Gets the orgChartOfAccountDescription 491 * 492 * @return Returns the orgChartOfAccountDescription. 493 */ 494 public String getOrgChartOfAccountDescription() { 495 return orgChartOfAccountDescription; 496 } 497 498 /** 499 * Sets the orgChartOfAccountDescription 500 * 501 * @param orgChartOfAccountDescription The orgChartOfAccountDescription to set. 502 */ 503 public void setOrgChartOfAccountDescription(String orgChartOfAccountDescription) { 504 this.orgChartOfAccountDescription = orgChartOfAccountDescription; 505 } 506 507 /** 508 * Gets the orgChartOfAccountsCode 509 * 510 * @return Returns the orgChartOfAccountsCode. 511 */ 512 public String getOrgChartOfAccountsCode() { 513 return orgChartOfAccountsCode; 514 } 515 516 /** 517 * Sets the orgChartOfAccountsCode 518 * 519 * @param orgChartOfAccountsCode The orgChartOfAccountsCode to set. 520 */ 521 public void setOrgChartOfAccountsCode(String orgChartOfAccountsCode) { 522 this.orgChartOfAccountsCode = orgChartOfAccountsCode; 523 } 524 525 public Integer getAccountLineAnnualBalanceAmount() { 526 return accountLineAnnualBalanceAmount; 527 } 528 529 public void setAccountLineAnnualBalanceAmount(Integer accountLineAnnualBalanceAmount) { 530 this.accountLineAnnualBalanceAmount = accountLineAnnualBalanceAmount; 531 } 532 533 public BigDecimal getAppointmentRequestedCsfFteQuantity() { 534 return appointmentRequestedCsfFteQuantity; 535 } 536 537 public void setAppointmentRequestedCsfFteQuantity(BigDecimal appointmentRequestedCsfFteQuantity) { 538 this.appointmentRequestedCsfFteQuantity = appointmentRequestedCsfFteQuantity; 539 } 540 541 public BigDecimal getAppointmentRequestedFteQuantity() { 542 return appointmentRequestedFteQuantity; 543 } 544 545 public void setAppointmentRequestedFteQuantity(BigDecimal appointmentRequestedFteQuantity) { 546 this.appointmentRequestedFteQuantity = appointmentRequestedFteQuantity; 547 } 548 549 public BigDecimal getCsfFullTimeEmploymentQuantity() { 550 return csfFullTimeEmploymentQuantity; 551 } 552 553 public void setCsfFullTimeEmploymentQuantity(BigDecimal csfFullTimeEmploymentQuantity) { 554 this.csfFullTimeEmploymentQuantity = csfFullTimeEmploymentQuantity; 555 } 556 557 public Integer getDifferenceAccountLineAnnualBalanceAmount() { 558 return differenceAccountLineAnnualBalanceAmount; 559 } 560 561 public void setDifferenceAccountLineAnnualBalanceAmount(Integer differenceAccountLineAnnualBalanceAmount) { 562 this.differenceAccountLineAnnualBalanceAmount = differenceAccountLineAnnualBalanceAmount; 563 } 564 565 public Integer getDifferenceAmountChange() { 566 return differenceAmountChange; 567 } 568 569 public void setDifferenceAmountChange(Integer differenceAmountChange) { 570 this.differenceAmountChange = differenceAmountChange; 571 } 572 573 public Integer getDifferenceFinancialBeginningBalanceLineAmount() { 574 return differenceFinancialBeginningBalanceLineAmount; 575 } 576 577 public void setDifferenceFinancialBeginningBalanceLineAmount(Integer differenceFinancialBeginningBalanceLineAmount) { 578 this.differenceFinancialBeginningBalanceLineAmount = differenceFinancialBeginningBalanceLineAmount; 579 } 580 581 public BigDecimal getDifferencePercentChange() { 582 return differencePercentChange; 583 } 584 585 public void setDifferencePercentChange(BigDecimal differencePercentChange) { 586 this.differencePercentChange = differencePercentChange; 587 } 588 589 public Integer getExpenditureAccountLineAnnualBalanceAmount() { 590 return expenditureAccountLineAnnualBalanceAmount; 591 } 592 593 public void setExpenditureAccountLineAnnualBalanceAmount(Integer expenditureAccountLineAnnualBalanceAmount) { 594 this.expenditureAccountLineAnnualBalanceAmount = expenditureAccountLineAnnualBalanceAmount; 595 } 596 597 public Integer getExpenditureAmountChange() { 598 return expenditureAmountChange; 599 } 600 601 public void setExpenditureAmountChange(Integer expenditureAmountChange) { 602 this.expenditureAmountChange = expenditureAmountChange; 603 } 604 605 public Integer getExpenditureFinancialBeginningBalanceLineAmount() { 606 return expenditureFinancialBeginningBalanceLineAmount; 607 } 608 609 public void setExpenditureFinancialBeginningBalanceLineAmount(Integer expenditureFinancialBeginningBalanceLineAmount) { 610 this.expenditureFinancialBeginningBalanceLineAmount = expenditureFinancialBeginningBalanceLineAmount; 611 } 612 613 public BigDecimal getExpenditurePercentChange() { 614 return expenditurePercentChange; 615 } 616 617 public void setExpenditurePercentChange(BigDecimal expenditurePercentChange) { 618 this.expenditurePercentChange = expenditurePercentChange; 619 } 620 621 public Integer getFinancialBeginningBalanceLineAmount() { 622 return financialBeginningBalanceLineAmount; 623 } 624 625 public void setFinancialBeginningBalanceLineAmount(Integer financialBeginningBalanceLineAmount) { 626 this.financialBeginningBalanceLineAmount = financialBeginningBalanceLineAmount; 627 } 628 629 public String getFinancialConsolidationSortCode() { 630 return financialConsolidationSortCode; 631 } 632 633 public void setFinancialConsolidationSortCode(String financialConsolidationSortCode) { 634 this.financialConsolidationSortCode = financialConsolidationSortCode; 635 } 636 637 public String getFinancialLevelSortCode() { 638 return financialLevelSortCode; 639 } 640 641 public void setFinancialLevelSortCode(String financialLevelSortCode) { 642 this.financialLevelSortCode = financialLevelSortCode; 643 } 644 645 public String getFinancialObjectLevelCode() { 646 return financialObjectLevelCode; 647 } 648 649 public void setFinancialObjectLevelCode(String financialObjectLevelCode) { 650 this.financialObjectLevelCode = financialObjectLevelCode; 651 } 652 653 public String getFinancialObjectName() { 654 return financialObjectName; 655 } 656 657 public void setFinancialObjectName(String financialObjectName) { 658 this.financialObjectName = financialObjectName; 659 } 660 661 public Integer getGrossAccountLineAnnualBalanceAmount() { 662 return grossAccountLineAnnualBalanceAmount; 663 } 664 665 public void setGrossAccountLineAnnualBalanceAmount(Integer grossAccountLineAnnualBalanceAmount) { 666 this.grossAccountLineAnnualBalanceAmount = grossAccountLineAnnualBalanceAmount; 667 } 668 669 public Integer getGrossAmountChange() { 670 return grossAmountChange; 671 } 672 673 public void setGrossAmountChange(Integer grossAmountChange) { 674 this.grossAmountChange = grossAmountChange; 675 } 676 677 public String getGrossDescription() { 678 return grossDescription; 679 } 680 681 public void setGrossDescription(String grossDescription) { 682 this.grossDescription = grossDescription; 683 } 684 685 public Integer getGrossFinancialBeginningBalanceLineAmount() { 686 return grossFinancialBeginningBalanceLineAmount; 687 } 688 689 public void setGrossFinancialBeginningBalanceLineAmount(Integer grossFinancialBeginningBalanceLineAmount) { 690 this.grossFinancialBeginningBalanceLineAmount = grossFinancialBeginningBalanceLineAmount; 691 } 692 693 public BigDecimal getGrossPercentChange() { 694 return grossPercentChange; 695 } 696 697 public void setGrossPercentChange(BigDecimal grossPercentChange) { 698 this.grossPercentChange = grossPercentChange; 699 } 700 701 public String getHeader2a() { 702 return header2a; 703 } 704 705 public void setHeader2a(String header2a) { 706 this.header2a = header2a; 707 } 708 709 public String getHeader31() { 710 return header31; 711 } 712 713 public void setHeader31(String header31) { 714 this.header31 = header31; 715 } 716 717 public String getHeader40() { 718 return header40; 719 } 720 721 public void setHeader40(String header40) { 722 this.header40 = header40; 723 } 724 725 public String getIncomeExpenseCode() { 726 return incomeExpenseCode; 727 } 728 729 public void setIncomeExpenseCode(String incomeExpenseCode) { 730 this.incomeExpenseCode = incomeExpenseCode; 731 } 732 733 public BigDecimal getPositionCsfLeaveFteQuantity() { 734 return positionCsfLeaveFteQuantity; 735 } 736 737 public void setPositionCsfLeaveFteQuantity(BigDecimal positionCsfLeaveFteQuantity) { 738 this.positionCsfLeaveFteQuantity = positionCsfLeaveFteQuantity; 739 } 740 741 public Integer getRevenueAccountLineAnnualBalanceAmount() { 742 return revenueAccountLineAnnualBalanceAmount; 743 } 744 745 public void setRevenueAccountLineAnnualBalanceAmount(Integer revenueAccountLineAnnualBalanceAmount) { 746 this.revenueAccountLineAnnualBalanceAmount = revenueAccountLineAnnualBalanceAmount; 747 } 748 749 public Integer getRevenueAmountChange() { 750 return revenueAmountChange; 751 } 752 753 public void setRevenueAmountChange(Integer revenueAmountChange) { 754 this.revenueAmountChange = revenueAmountChange; 755 } 756 757 public Integer getRevenueFinancialBeginningBalanceLineAmount() { 758 return revenueFinancialBeginningBalanceLineAmount; 759 } 760 761 public void setRevenueFinancialBeginningBalanceLineAmount(Integer revenueFinancialBeginningBalanceLineAmount) { 762 this.revenueFinancialBeginningBalanceLineAmount = revenueFinancialBeginningBalanceLineAmount; 763 } 764 765 public BigDecimal getRevenuePercentChange() { 766 return revenuePercentChange; 767 } 768 769 public void setRevenuePercentChange(BigDecimal revenuePercentChange) { 770 this.revenuePercentChange = revenuePercentChange; 771 } 772 773 public Integer getTotalConsolidationAccountLineAnnualBalanceAmount() { 774 return totalConsolidationAccountLineAnnualBalanceAmount; 775 } 776 777 public void setTotalConsolidationAccountLineAnnualBalanceAmount(Integer totalConsolidationAccountLineAnnualBalanceAmount) { 778 this.totalConsolidationAccountLineAnnualBalanceAmount = totalConsolidationAccountLineAnnualBalanceAmount; 779 } 780 781 public Integer getTotalConsolidationAmountChange() { 782 return totalConsolidationAmountChange; 783 } 784 785 public void setTotalConsolidationAmountChange(Integer totalConsolidationAmountChange) { 786 this.totalConsolidationAmountChange = totalConsolidationAmountChange; 787 } 788 789 public BigDecimal getTotalConsolidationAppointmentRequestedCsfFteQuantity() { 790 return totalConsolidationAppointmentRequestedCsfFteQuantity; 791 } 792 793 public void setTotalConsolidationAppointmentRequestedCsfFteQuantity(BigDecimal totalConsolidationAppointmentRequestedCsfFteQuantity) { 794 this.totalConsolidationAppointmentRequestedCsfFteQuantity = totalConsolidationAppointmentRequestedCsfFteQuantity; 795 } 796 797 public BigDecimal getTotalConsolidationAppointmentRequestedFteQuantity() { 798 return totalConsolidationAppointmentRequestedFteQuantity; 799 } 800 801 public void setTotalConsolidationAppointmentRequestedFteQuantity(BigDecimal totalConsolidationAppointmentRequestedFteQuantity) { 802 this.totalConsolidationAppointmentRequestedFteQuantity = totalConsolidationAppointmentRequestedFteQuantity; 803 } 804 805 public String getTotalConsolidationDescription() { 806 return totalConsolidationDescription; 807 } 808 809 public void setTotalConsolidationDescription(String totalConsolidationDescription) { 810 this.totalConsolidationDescription = totalConsolidationDescription; 811 } 812 813 public Integer getTotalConsolidationFinancialBeginningBalanceLineAmount() { 814 return totalConsolidationFinancialBeginningBalanceLineAmount; 815 } 816 817 public void setTotalConsolidationFinancialBeginningBalanceLineAmount(Integer totalConsolidationFinancialBeginningBalanceLineAmount) { 818 this.totalConsolidationFinancialBeginningBalanceLineAmount = totalConsolidationFinancialBeginningBalanceLineAmount; 819 } 820 821 public BigDecimal getTotalConsolidationPercentChange() { 822 return totalConsolidationPercentChange; 823 } 824 825 public void setTotalConsolidationPercentChange(BigDecimal totalConsolidationPercentChange) { 826 this.totalConsolidationPercentChange = totalConsolidationPercentChange; 827 } 828 829 public BigDecimal getTotalConsolidationPositionCsfFullTimeEmploymentQuantity() { 830 return totalConsolidationPositionCsfFullTimeEmploymentQuantity; 831 } 832 833 public void setTotalConsolidationPositionCsfFullTimeEmploymentQuantity(BigDecimal totalConsolidationPositionCsfFullTimeEmploymentQuantity) { 834 this.totalConsolidationPositionCsfFullTimeEmploymentQuantity = totalConsolidationPositionCsfFullTimeEmploymentQuantity; 835 } 836 837 public BigDecimal getTotalConsolidationPositionCsfLeaveFteQuantity() { 838 return totalConsolidationPositionCsfLeaveFteQuantity; 839 } 840 841 public void setTotalConsolidationPositionCsfLeaveFteQuantity(BigDecimal totalConsolidationPositionCsfLeaveFteQuantity) { 842 this.totalConsolidationPositionCsfLeaveFteQuantity = totalConsolidationPositionCsfLeaveFteQuantity; 843 } 844 845 public Integer getTotalLevelAccountLineAnnualBalanceAmount() { 846 return totalLevelAccountLineAnnualBalanceAmount; 847 } 848 849 public void setTotalLevelAccountLineAnnualBalanceAmount(Integer totalLevelAccountLineAnnualBalanceAmount) { 850 this.totalLevelAccountLineAnnualBalanceAmount = totalLevelAccountLineAnnualBalanceAmount; 851 } 852 853 public Integer getTotalLevelAmountChange() { 854 return totalLevelAmountChange; 855 } 856 857 public void setTotalLevelAmountChange(Integer totalLevelAmountChange) { 858 this.totalLevelAmountChange = totalLevelAmountChange; 859 } 860 861 public BigDecimal getTotalLevelAppointmentRequestedCsfFteQuantity() { 862 return totalLevelAppointmentRequestedCsfFteQuantity; 863 } 864 865 public void setTotalLevelAppointmentRequestedCsfFteQuantity(BigDecimal totalLevelAppointmentRequestedCsfFteQuantity) { 866 this.totalLevelAppointmentRequestedCsfFteQuantity = totalLevelAppointmentRequestedCsfFteQuantity; 867 } 868 869 public BigDecimal getTotalLevelAppointmentRequestedFteQuantity() { 870 return totalLevelAppointmentRequestedFteQuantity; 871 } 872 873 public void setTotalLevelAppointmentRequestedFteQuantity(BigDecimal totalLevelAppointmentRequestedFteQuantity) { 874 this.totalLevelAppointmentRequestedFteQuantity = totalLevelAppointmentRequestedFteQuantity; 875 } 876 877 public String getTotalLevelDescription() { 878 return totalLevelDescription; 879 } 880 881 public void setTotalLevelDescription(String totalLevelDescription) { 882 this.totalLevelDescription = totalLevelDescription; 883 } 884 885 public Integer getTotalLevelFinancialBeginningBalanceLineAmount() { 886 return totalLevelFinancialBeginningBalanceLineAmount; 887 } 888 889 public void setTotalLevelFinancialBeginningBalanceLineAmount(Integer totalLevelFinancialBeginningBalanceLineAmount) { 890 this.totalLevelFinancialBeginningBalanceLineAmount = totalLevelFinancialBeginningBalanceLineAmount; 891 } 892 893 public BigDecimal getTotalLevelPercentChange() { 894 return totalLevelPercentChange; 895 } 896 897 public void setTotalLevelPercentChange(BigDecimal totalLevelPercentChange) { 898 this.totalLevelPercentChange = totalLevelPercentChange; 899 } 900 901 public BigDecimal getTotalLevelPositionCsfFullTimeEmploymentQuantity() { 902 return totalLevelPositionCsfFullTimeEmploymentQuantity; 903 } 904 905 public void setTotalLevelPositionCsfFullTimeEmploymentQuantity(BigDecimal totalLevelPositionCsfFullTimeEmploymentQuantity) { 906 this.totalLevelPositionCsfFullTimeEmploymentQuantity = totalLevelPositionCsfFullTimeEmploymentQuantity; 907 } 908 909 public BigDecimal getTotalLevelPositionCsfLeaveFteQuantity() { 910 return totalLevelPositionCsfLeaveFteQuantity; 911 } 912 913 public void setTotalLevelPositionCsfLeaveFteQuantity(BigDecimal totalLevelPositionCsfLeaveFteQuantity) { 914 this.totalLevelPositionCsfLeaveFteQuantity = totalLevelPositionCsfLeaveFteQuantity; 915 } 916 917 public String getTotalSubFundGroupDesc() { 918 return totalSubFundGroupDesc; 919 } 920 921 public void setTotalSubFundGroupDesc(String totalSubFundGroupDesc) { 922 this.totalSubFundGroupDesc = totalSubFundGroupDesc; 923 } 924 925 public Integer getTypeAccountLineAnnualBalanceAmount() { 926 return typeAccountLineAnnualBalanceAmount; 927 } 928 929 public void setTypeAccountLineAnnualBalanceAmount(Integer typeAccountLineAnnualBalanceAmount) { 930 this.typeAccountLineAnnualBalanceAmount = typeAccountLineAnnualBalanceAmount; 931 } 932 933 public Integer getTypeAmountChange() { 934 return typeAmountChange; 935 } 936 937 public void setTypeAmountChange(Integer typeAmountChange) { 938 this.typeAmountChange = typeAmountChange; 939 } 940 941 public BigDecimal getTypeAppointmentRequestedCsfFteQuantity() { 942 return typeAppointmentRequestedCsfFteQuantity; 943 } 944 945 public void setTypeAppointmentRequestedCsfFteQuantity(BigDecimal typeAppointmentRequestedCsfFteQuantity) { 946 this.typeAppointmentRequestedCsfFteQuantity = typeAppointmentRequestedCsfFteQuantity; 947 } 948 949 public BigDecimal getTypeAppointmentRequestedFteQuantity() { 950 return typeAppointmentRequestedFteQuantity; 951 } 952 953 public void setTypeAppointmentRequestedFteQuantity(BigDecimal typeAppointmentRequestedFteQuantity) { 954 this.typeAppointmentRequestedFteQuantity = typeAppointmentRequestedFteQuantity; 955 } 956 957 public String getTypeDesc() { 958 return typeDesc; 959 } 960 961 public void setTypeDesc(String typeDesc) { 962 this.typeDesc = typeDesc; 963 } 964 965 public Integer getTypeFinancialBeginningBalanceLineAmount() { 966 return typeFinancialBeginningBalanceLineAmount; 967 } 968 969 public void setTypeFinancialBeginningBalanceLineAmount(Integer typeFinancialBeginningBalanceLineAmount) { 970 this.typeFinancialBeginningBalanceLineAmount = typeFinancialBeginningBalanceLineAmount; 971 } 972 973 public BigDecimal getTypePercentChange() { 974 return typePercentChange; 975 } 976 977 public void setTypePercentChange(BigDecimal typePercentChange) { 978 this.typePercentChange = typePercentChange; 979 } 980 981 public BigDecimal getTypePositionCsfFullTimeEmploymentQuantity() { 982 return typePositionCsfFullTimeEmploymentQuantity; 983 } 984 985 public void setTypePositionCsfFullTimeEmploymentQuantity(BigDecimal typePositionCsfFullTimeEmploymentQuantity) { 986 this.typePositionCsfFullTimeEmploymentQuantity = typePositionCsfFullTimeEmploymentQuantity; 987 } 988 989 public BigDecimal getTypePositionCsfLeaveFteQuantity() { 990 return typePositionCsfLeaveFteQuantity; 991 } 992 993 public void setTypePositionCsfLeaveFteQuantity(BigDecimal typePositionCsfLeaveFteQuantity) { 994 this.typePositionCsfLeaveFteQuantity = typePositionCsfLeaveFteQuantity; 995 } 996 997 public String getFinancialObjectCode() { 998 return financialObjectCode; 999 } 1000 1001 public void setFinancialObjectCode(String financialObjectCode) { 1002 this.financialObjectCode = financialObjectCode; 1003 } 1004 1005 }