Subversion Repositories SmartDukaan

Rev

Rev 29763 | Rev 29794 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

import java.time.LocalDateTime;

import com.spice.profitmandi.common.services.mandii.AddressProofType;
import com.spice.profitmandi.common.services.mandii.Gender;
import com.spice.profitmandi.common.services.mandii.MaritalStatus;

public class FofoKycModel {

        private int id;
        private String firstName;

        private String middleName;

        private String lastName;

        private String fatherName;

        public String getFatherName() {
                return fatherName;
        }

        public void setFatherName(String fatherName) {
                this.fatherName = fatherName;
        }

        private LocalDateTime dob;
        private Gender gender;

        private MaritalStatus maritalStatus;
        private String email;
        private String mobile;

        private String pan;

        private int pandocId;

        private String poaNo;

        private AddressProofType poaType;

        private int paoFrontd;

        private int paoBackId;

        private String address1;

        private String address2;

        private String address3;

        private String city;

        private String state;

        private String pincode;

        private int onboardingId;

        public int getId() {
                return id;
        }

        public void setId(int id) {
                this.id = id;
        }

        public String getFirstName() {
                return firstName;
        }

        public void setFirstName(String firstName) {
                this.firstName = firstName;
        }

        public String getMiddleName() {
                return middleName;
        }

        public void setMiddleName(String middleName) {
                this.middleName = middleName;
        }

        public String getLastName() {
                return lastName;
        }

        public void setLastName(String lastName) {
                this.lastName = lastName;
        }

        public LocalDateTime getDob() {
                return dob;
        }

        public void setDob(LocalDateTime dob) {
                this.dob = dob;
        }

        public String getEmail() {
                return email;
        }

        public void setEmail(String email) {
                this.email = email;
        }

        public String getMobile() {
                return mobile;
        }

        public void setMobile(String mobile) {
                this.mobile = mobile;
        }

        public String getPan() {
                return pan;
        }

        public void setPan(String pan) {
                this.pan = pan;
        }

        public int getPandocId() {
                return pandocId;
        }

        public void setPandocId(int pandocId) {
                this.pandocId = pandocId;
        }

        public String getPoaNo() {
                return poaNo;
        }

        public void setPoaNo(String poaNo) {
                this.poaNo = poaNo;
        }

        public Gender getGender() {
                return gender;
        }

        public void setGender(Gender gender) {
                this.gender = gender;
        }

        public MaritalStatus getMaritalStatus() {
                return maritalStatus;
        }

        public void setMaritalStatus(MaritalStatus maritalStatus) {
                this.maritalStatus = maritalStatus;
        }

        public AddressProofType getPoaType() {
                return poaType;
        }

        public void setPoaType(AddressProofType poaType) {
                this.poaType = poaType;
        }

        public int getPaoFrontd() {
                return paoFrontd;
        }

        public void setPaoFrontd(int paoFrontd) {
                this.paoFrontd = paoFrontd;
        }

        public int getPaoBackId() {
                return paoBackId;
        }

        public void setPaoBackId(int paoBackId) {
                this.paoBackId = paoBackId;
        }

        public String getAddress1() {
                return address1;
        }

        public void setAddress1(String address1) {
                this.address1 = address1;
        }

        public String getAddress2() {
                return address2;
        }

        public void setAddress2(String address2) {
                this.address2 = address2;
        }

        public String getAddress3() {
                return address3;
        }

        public void setAddress3(String address3) {
                this.address3 = address3;
        }

        public String getCity() {
                return city;
        }

        public void setCity(String city) {
                this.city = city;
        }

        public String getState() {
                return state;
        }

        public void setState(String state) {
                this.state = state;
        }

        public String getPincode() {
                return pincode;
        }

        public void setPincode(String pincode) {
                this.pincode = pincode;
        }

        public int getOnboardingId() {
                return onboardingId;
        }

        public void setOnboardingId(int onboardingId) {
                this.onboardingId = onboardingId;
        }

        @Override
        public String toString() {
                return "FofoKycModel [id=" + id + ", firstName=" + firstName + ", middleName=" + middleName + ", lastName="
                                + lastName + ", fatherName=" + fatherName + ", dob=" + dob + ", gender=" + gender + ", maritalStatus="
                                + maritalStatus + ", email=" + email + ", mobile=" + mobile + ", pan=" + pan + ", pandocId=" + pandocId
                                + ", poaNo=" + poaNo + ", poaType=" + poaType + ", paoFrontd=" + paoFrontd + ", paoBackId=" + paoBackId
                                + ", address1=" + address1 + ", address2=" + address2 + ", address3=" + address3 + ", city=" + city
                                + ", state=" + state + ", pincode=" + pincode + ", onboardingId=" + onboardingId + "]";
        }

}