Subversion Repositories SmartDukaan

Rev

Rev 33582 | Rev 33885 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.entity.onBoarding;

import com.spice.profitmandi.common.enumuration.BusinessType;
import com.spice.profitmandi.dao.enumuration.onBorading.onBoardingFormEnums.LoiStatus;
import com.spice.profitmandi.dao.model.hdfc.BrandCommitmentModel;

import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.List;

public class LoiFormData {
    private int referId;
    private BusinessType businessType;
    private LocalDate acquiredDate;
    private String firstName;
    private String lastName;
    private long mobile;
    private long landline;
    private String email;
    private LocalDate dob;
    private LocalDate anniversaryDate;
    private String panNo;
    private long adharNo;
    private String gstNo;
    private String companyName;
    private String gstState;
    private String gstDistrict;
    private String gstCity;
    private int gstPin;
    private String city;
    private String line1;
    private String bankName;
    private String ifscCode;
    private long accountNo;
    private int agreeWalletValue;
    private double storeArea;
    private double storePotential;
    private double vivoCommitmentAmount;
    private double oppoCommitmentAmount;
    private double samsungCommitmentAmount;
    private double xiaomiCommitmentAmount;
    private double accessoriesCommitmentAmount;
    private double otherBrandsCommitmentAmount;
    private double totaCommitmentAmount;
    private String agreedBrandFees;
    private double brandFeesCollected;
    private String paymentMode;
    private String paymentReferenceNo;
    private LoiStatus Status;
    private LocalDate loiSignedOn;
    private int signedConfirmBy;
    private LocalDate loiGeneratedOn;
    private int loiGeneratedBy;
    private String billingAddress;
    private String lessCommitReason;
    private LocalDateTime feeCollectingTimeStamp;
    private List<BrandCommitmentModel> brandCommitment;

    public List<BrandCommitmentModel> getBrandCommitment() {
        return brandCommitment;
    }

    public void setBrandCommitment(List<BrandCommitmentModel> brandCommitment) {
        this.brandCommitment = brandCommitment;
    }

    public LocalDateTime getFeeCollectingTimeStamp() {
        return feeCollectingTimeStamp;
    }

    public void setFeeCollectingTimeStamp(LocalDateTime feeCollectingTimeStamp) {
        this.feeCollectingTimeStamp = feeCollectingTimeStamp;
    }

    public String getLessCommitReason() {
        return lessCommitReason;
    }

    public void setLessCommitReason(String lessCommitReason) {
        this.lessCommitReason = lessCommitReason;
    }

    public String getBillingAddress() {
        return billingAddress;
    }

    public void setBillingAddress(String billingAddress) {
        this.billingAddress = billingAddress;
    }

    public int getReferId() {
        return referId;
    }

    public void setReferId(int referId) {
        this.referId = referId;
    }

    public BusinessType getBusinessType() {
        return businessType;
    }

    public void setBusinessType(BusinessType businessType) {
        this.businessType = businessType;
    }

    public String getLastName() {
        return lastName;
    }

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

    public LocalDate getAcquiredDate() {
        return acquiredDate;
    }

    public void setAcquiredDate(LocalDate acquiredDate) {
        this.acquiredDate = acquiredDate;
    }

    public String getFirstName() {
        return firstName;
    }

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

    public long getMobile() {
        return mobile;
    }

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

    public long getLandline() {
        return landline;
    }

    public void setLandline(long landline) {
        this.landline = landline;
    }

    public String getEmail() {
        return email;
    }

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

    public LocalDate getDob() {
        return dob;
    }

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

    public LocalDate getAnniversaryDate() {
        return anniversaryDate;
    }

    public void setAnniversaryDate(LocalDate anniversaryDate) {
        this.anniversaryDate = anniversaryDate;
    }

    public String getPanNo() {
        return panNo;
    }

    public void setPanNo(String panNo) {
        this.panNo = panNo;
    }

    public long getAdharNo() {
        return adharNo;
    }

    public void setAdharNo(long adharNo) {
        this.adharNo = adharNo;
    }

    public String getGstNo() {
        return gstNo;
    }

    public void setGstNo(String gstNo) {
        this.gstNo = gstNo;
    }

    public String getCompanyName() {
        return companyName;
    }

    public void setCompanyName(String companyName) {
        this.companyName = companyName;
    }

    public String getGstState() {
        return gstState;
    }

    public void setGstState(String gstState) {
        this.gstState = gstState;
    }

    public String getGstDistrict() {
        return gstDistrict;
    }

    public void setGstDistrict(String gstDistrict) {
        this.gstDistrict = gstDistrict;
    }

    public String getGstCity() {
        return gstCity;
    }

    public void setGstCity(String gstCity) {
        this.gstCity = gstCity;
    }

    public int getGstPin() {
        return gstPin;
    }

    public void setGstPin(int gstPin) {
        this.gstPin = gstPin;
    }

    public String getCity() {
        return city;
    }

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

    public String getLine1() {
        return line1;
    }

    public void setLine1(String line1) {
        this.line1 = line1;
    }

    public String getBankName() {
        return bankName;
    }

    public void setBankName(String bankName) {
        this.bankName = bankName;
    }

    public String getIfscCode() {
        return ifscCode;
    }

    public void setIfscCode(String ifscCode) {
        this.ifscCode = ifscCode;
    }

    public long getAccountNo() {
        return accountNo;
    }

    public void setAccountNo(long accountNo) {
        this.accountNo = accountNo;
    }

    public int getAgreeWalletValue() {
        return agreeWalletValue;
    }

    public void setAgreeWalletValue(int agreeWalletValue) {
        this.agreeWalletValue = agreeWalletValue;
    }

    public double getStoreArea() {
        return storeArea;
    }

    public void setStoreArea(double storeArea) {
        this.storeArea = storeArea;
    }

    public double getStorePotential() {
        return storePotential;
    }

    public void setStorePotential(double storePotential) {
        this.storePotential = storePotential;
    }

    public double getVivoCommitmentAmount() {
        return vivoCommitmentAmount;
    }

    public void setVivoCommitmentAmount(double vivoCommitmentAmount) {
        this.vivoCommitmentAmount = vivoCommitmentAmount;
    }

    public double getOppoCommitmentAmount() {
        return oppoCommitmentAmount;
    }

    public void setOppoCommitmentAmount(double oppoCommitmentAmount) {
        this.oppoCommitmentAmount = oppoCommitmentAmount;
    }

    public double getSamsungCommitmentAmount() {
        return samsungCommitmentAmount;
    }

    public void setSamsungCommitmentAmount(double samsungCommitmentAmount) {
        this.samsungCommitmentAmount = samsungCommitmentAmount;
    }

    public double getXiaomiCommitmentAmount() {
        return xiaomiCommitmentAmount;
    }

    public void setXiaomiCommitmentAmount(double xiaomiCommitmentAmount) {
        this.xiaomiCommitmentAmount = xiaomiCommitmentAmount;
    }

    public double getAccessoriesCommitmentAmount() {
        return accessoriesCommitmentAmount;
    }

    public void setAccessoriesCommitmentAmount(double accessoriesCommitmentAmount) {
        this.accessoriesCommitmentAmount = accessoriesCommitmentAmount;
    }

    public double getOtherBrandsCommitmentAmount() {
        return otherBrandsCommitmentAmount;
    }

    public void setOtherBrandsCommitmentAmount(double otherBrandsCommitmentAmount) {
        this.otherBrandsCommitmentAmount = otherBrandsCommitmentAmount;
    }

    public double getTotaCommitmentAmount() {
        return totaCommitmentAmount;
    }

    public void setTotaCommitmentAmount(double totaCommitmentAmount) {
        this.totaCommitmentAmount = totaCommitmentAmount;
    }

    public String getAgreedBrandFees() {
        return agreedBrandFees;
    }

    public void setAgreedBrandFees(String agreedBrandFees) {
        this.agreedBrandFees = agreedBrandFees;
    }

    public double getBrandFeesCollected() {
        return brandFeesCollected;
    }

    public void setBrandFeesCollected(double brandFeesCollected) {
        this.brandFeesCollected = brandFeesCollected;
    }

    public String getPaymentMode() {
        return paymentMode;
    }

    public void setPaymentMode(String paymentMode) {
        this.paymentMode = paymentMode;
    }

    public String getPaymentReferenceNo() {
        return paymentReferenceNo;
    }

    public void setPaymentReferenceNo(String paymentReferenceNo) {
        this.paymentReferenceNo = paymentReferenceNo;
    }

    public LoiStatus getStatus() {
        return Status;
    }

    public void setStatus(LoiStatus status) {
        Status = status;
    }

    public LocalDate getLoiSignedOn() {
        return loiSignedOn;
    }

    public void setLoiSignedOn(LocalDate loiSignedOn) {
        this.loiSignedOn = loiSignedOn;
    }

    public int getSignedConfirmBy() {
        return signedConfirmBy;
    }

    public void setSignedConfirmBy(int signedConfirmBy) {
        this.signedConfirmBy = signedConfirmBy;
    }

    public LocalDate getLoiGeneratedOn() {
        return loiGeneratedOn;
    }

    public void setLoiGeneratedOn(LocalDate loiGeneratedOn) {
        this.loiGeneratedOn = loiGeneratedOn;
    }

    public int getLoiGeneratedBy() {
        return loiGeneratedBy;
    }

    public void setLoiGeneratedBy(int loiGeneratedBy) {
        this.loiGeneratedBy = loiGeneratedBy;
    }


}