/* * eGov suite of products aim to improve the internal efficiency,transparency, * accountability and the service delivery of the government organizations. * * Copyright (C) <2015> eGovernments Foundation * * The updated version of eGov suite of products as by eGovernments Foundation * is available at http://www.egovernments.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses/ or * http://www.gnu.org/licenses/gpl.html . * * In addition to the terms of the GPL license to be adhered to in using this * program, the following additional terms are to be complied with: * * 1) All versions of this program, verbatim or modified must carry this * Legal Notice. * * 2) Any misrepresentation of the origin of the material is prohibited. It * is required that all modified versions of this material be marked in * reasonable ways as different from the original version. * * 3) This license does not grant any rights to any user of the program * with regards to rights under trademark law for use of the trade names * or trademarks of eGovernments Foundation. * * In case of any queries, you can reach eGovernments Foundation at contact@egovernments.org. */ package org.egov.works.reports.entity; public class WorkProgressRegisterPdf { private String ward; private String location; private String workCategory; private String typeOfSlum; private String beneficiary; private String nameOfWork; private String winCode; private String fund; private String function; private String budgetHead; private String typeOfWork; private String subTypeOfWork; private String adminSanctionAuthorityDate; private String adminSanctionAmount; private String technicalSanctionAuthorityDate; private String estimateAmount; private String modeOfAllotment; private String agreementNumberDate; private String contractorCodeName; private String agreementAmount; private String latestMbNumberDate; private String latestBillNumberDate; private String billtype; private String billamount; private String totalBillAmount; private String totalBillPaidSoFar; private String balanceValueOfWorkToBill; private String milestonePercentageCompleted; public String getWard() { return ward; } public void setWard(final String ward) { this.ward = ward; } public String getLocation() { return location; } public void setLocation(final String location) { this.location = location; } public String getWorkCategory() { return workCategory; } public void setWorkCategory(final String workCategory) { this.workCategory = workCategory; } public String getTypeOfSlum() { return typeOfSlum; } public void setTypeOfSlum(final String typeOfSlum) { this.typeOfSlum = typeOfSlum; } public String getBeneficiary() { return beneficiary; } public void setBeneficiary(final String beneficiary) { this.beneficiary = beneficiary; } public String getNameOfWork() { return nameOfWork; } public void setNameOfWork(final String nameOfWork) { this.nameOfWork = nameOfWork; } public String getWinCode() { return winCode; } public void setWinCode(final String winCode) { this.winCode = winCode; } public String getFund() { return fund; } public void setFund(final String fund) { this.fund = fund; } public String getFunction() { return function; } public void setFunction(final String function) { this.function = function; } public String getBudgetHead() { return budgetHead; } public void setBudgetHead(final String budgetHead) { this.budgetHead = budgetHead; } public String getTypeOfWork() { return typeOfWork; } public void setTypeOfWork(final String typeOfWork) { this.typeOfWork = typeOfWork; } public String getSubTypeOfWork() { return subTypeOfWork; } public void setSubTypeOfWork(final String subTypeOfWork) { this.subTypeOfWork = subTypeOfWork; } public String getAdminSanctionAuthorityDate() { return adminSanctionAuthorityDate; } public void setAdminSanctionAuthorityDate(final String adminSanctionAuthorityDate) { this.adminSanctionAuthorityDate = adminSanctionAuthorityDate; } public String getAdminSanctionAmount() { return adminSanctionAmount; } public void setAdminSanctionAmount(final String adminSanctionAmount) { this.adminSanctionAmount = adminSanctionAmount; } public String getTechnicalSanctionAuthorityDate() { return technicalSanctionAuthorityDate; } public void setTechnicalSanctionAuthorityDate(final String technicalSanctionAuthorityDate) { this.technicalSanctionAuthorityDate = technicalSanctionAuthorityDate; } public String getEstimateAmount() { return estimateAmount; } public void setEstimateAmount(final String estimateAmount) { this.estimateAmount = estimateAmount; } public String getModeOfAllotment() { return modeOfAllotment; } public void setModeOfAllotment(final String modeOfAllotment) { this.modeOfAllotment = modeOfAllotment; } public String getAgreementNumberDate() { return agreementNumberDate; } public void setAgreementNumberDate(final String agreementNumberDate) { this.agreementNumberDate = agreementNumberDate; } public String getContractorCodeName() { return contractorCodeName; } public void setContractorCodeName(final String contractorCodeName) { this.contractorCodeName = contractorCodeName; } public String getAgreementAmount() { return agreementAmount; } public void setAgreementAmount(final String agreementAmount) { this.agreementAmount = agreementAmount; } public String getLatestMbNumberDate() { return latestMbNumberDate; } public void setLatestMbNumberDate(final String latestMbNumberDate) { this.latestMbNumberDate = latestMbNumberDate; } public String getLatestBillNumberDate() { return latestBillNumberDate; } public void setLatestBillNumberDate(final String latestBillNumberDate) { this.latestBillNumberDate = latestBillNumberDate; } public String getBilltype() { return billtype; } public void setBilltype(final String billtype) { this.billtype = billtype; } public String getBillamount() { return billamount; } public void setBillamount(final String billamount) { this.billamount = billamount; } public String getTotalBillAmount() { return totalBillAmount; } public void setTotalBillAmount(String totalBillAmount) { this.totalBillAmount = totalBillAmount; } public String getTotalBillPaidSoFar() { return totalBillPaidSoFar; } public void setTotalBillPaidSoFar(final String totalBillPaidSoFar) { this.totalBillPaidSoFar = totalBillPaidSoFar; } public String getBalanceValueOfWorkToBill() { return balanceValueOfWorkToBill; } public void setBalanceValueOfWorkToBill(final String balanceValueOfWorkToBill) { this.balanceValueOfWorkToBill = balanceValueOfWorkToBill; } public String getMilestonePercentageCompleted() { return milestonePercentageCompleted; } public void setMilestonePercentageCompleted(String milestonePercentageCompleted) { this.milestonePercentageCompleted = milestonePercentageCompleted; } }