/* * 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.ptis.domain.model; import java.io.Serializable; @SuppressWarnings("serial") public class FloorDetails implements Serializable { private String floorNoCode; private String buildClassificationCode; private String natureOfUsageCode; private String firmName; private String occupancyCode; private String occupantName; private String constructionDate; private String occupancyDate; private Float plinthArea; private Float plinthLength; private Float plinthBreadth; private Boolean unstructuredLand; private String buildingPermissionNo; private String buildingPermissionDate; private Float buildingPlanPlinthArea; private Double unitRate; @Override public String toString() { return "FloorDetails [floorNoCode=" + floorNoCode + ", buildClassificationCode=" + buildClassificationCode + ", natureOfUsageCode=" + natureOfUsageCode + ", occupancyCode=" + occupancyCode + ", occupantName=" + occupantName + ", constructionDate=" + constructionDate + ", occupancyDate=" + occupancyDate + ", unstructuredLand=" + unstructuredLand + ", firmName=" + firmName + ", plinthArea=" + plinthArea + ", plinthLength=" + plinthLength + ", plinthBreadth=" + plinthBreadth + ", buildingPermissionNo=" + buildingPermissionNo + ", buildingPermissionDate=" + buildingPermissionDate + ", buildingPlanPlinthArea=" + buildingPlanPlinthArea + "]"; } public String getFloorNoCode() { return floorNoCode; } public void setFloorNoCode(String floorNoCode) { this.floorNoCode = floorNoCode; } public String getBuildClassificationCode() { return buildClassificationCode; } public void setBuildClassificationCode(String buildClassificationCode) { this.buildClassificationCode = buildClassificationCode; } public String getNatureOfUsageCode() { return natureOfUsageCode; } public void setNatureOfUsageCode(String natureOfUsageCode) { this.natureOfUsageCode = natureOfUsageCode; } public String getOccupancyCode() { return occupancyCode; } public void setOccupancyCode(String occupancyCode) { this.occupancyCode = occupancyCode; } public String getOccupantName() { return occupantName; } public void setOccupantName(String occupantName) { this.occupantName = occupantName; } public String getConstructionDate() { return constructionDate; } public void setConstructionDate(String constructionDate) { this.constructionDate = constructionDate; } public Float getPlinthArea() { return plinthArea; } public void setPlinthArea(Float plinthArea) { this.plinthArea = plinthArea; } public Float getPlinthLength() { return plinthLength; } public void setPlinthLength(Float plinthLength) { this.plinthLength = plinthLength; } public Float getPlinthBreadth() { return plinthBreadth; } public void setPlinthBreadth(Float plinthBreadth) { this.plinthBreadth = plinthBreadth; } public Boolean getUnstructuredLand() { return unstructuredLand; } public void setUnstructuredLand(Boolean unstructuredLand) { this.unstructuredLand = unstructuredLand; } public String getFirmName() { return firmName; } public void setFirmName(String firmName) { this.firmName = firmName; } public String getOccupancyDate() { return occupancyDate; } public void setOccupancyDate(String occupancyDate) { this.occupancyDate = occupancyDate; } public String getBuildingPermissionNo() { return buildingPermissionNo; } public void setBuildingPermissionNo(String buildingPermissionNo) { this.buildingPermissionNo = buildingPermissionNo; } public String getBuildingPermissionDate() { return buildingPermissionDate; } public void setBuildingPermissionDate(String buildingPermissionDate) { this.buildingPermissionDate = buildingPermissionDate; } public Float getBuildingPlanPlinthArea() { return buildingPlanPlinthArea; } public void setBuildingPlanPlinthArea(Float buildingPlanPlinthArea) { this.buildingPlanPlinthArea = buildingPlanPlinthArea; } public Double getUnitRate() { return unitRate; } public void setUnitRate(Double unitRate) { this.unitRate = unitRate; } }