Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.service.biuedart;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;

import java.time.LocalDate;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

class Shipper {
    @JsonProperty("CustomerAddress1")
    private String customerAddress1 = "";

    @JsonProperty("CustomerAddress2")
    private String customerAddress2 = "";

    @JsonProperty("CustomerAddress3")
    private String customerAddress3 = "";

    @JsonProperty("CustomerAddressinfo")
    private String customerAddressinfo = "";

    @JsonProperty("CustomerCode")
    private String customerCode = "";

    @JsonProperty("CustomerEmailID")
    private String customerEmailID = "";

    @JsonProperty("CustomerGSTNumber")
    private String customerGSTNumber = "";

    @JsonProperty("CustomerLatitude")
    private String customerLatitude = "";

    @JsonProperty("CustomerLongitude")
    private String customerLongitude = "";

    @JsonProperty("CustomerMaskedContactNumber")
    private String customerMaskedContactNumber = "";

    @JsonProperty("CustomerMobile")
    private String customerMobile = "";

    @JsonProperty("CustomerName")
    private String customerName = "";

    @JsonProperty("CustomerPincode")
    private String customerPincode = "";

    @JsonProperty("CustomerTelephone")
    private String customerTelephone = "";

    @JsonProperty("IsToPayCustomer")
    private boolean toPayCustomer;

    @JsonProperty("OriginArea")
    private String originArea = "";

    @JsonProperty("Sender")
    private String sender = "";

    @JsonProperty("VendorCode")
    private String vendorCode = "";

    public String getCustomerAddress1() {
        return customerAddress1;
    }

    public void setCustomerAddress1(String customerAddress1) {
        this.customerAddress1 = customerAddress1;
    }

    public String getCustomerAddress2() {
        return customerAddress2;
    }

    public void setCustomerAddress2(String customerAddress2) {
        this.customerAddress2 = customerAddress2;
    }

    public String getCustomerAddress3() {
        return customerAddress3;
    }

    public void setCustomerAddress3(String customerAddress3) {
        this.customerAddress3 = customerAddress3;
    }

    public String getCustomerAddressinfo() {
        return customerAddressinfo;
    }

    public void setCustomerAddressinfo(String customerAddressinfo) {
        this.customerAddressinfo = customerAddressinfo;
    }

    public String getCustomerCode() {
        return customerCode;
    }

    public void setCustomerCode(String customerCode) {
        this.customerCode = customerCode;
    }

    public String getCustomerEmailID() {
        return customerEmailID;
    }

    public void setCustomerEmailID(String customerEmailID) {
        this.customerEmailID = customerEmailID;
    }

    public String getCustomerGSTNumber() {
        return customerGSTNumber;
    }

    public void setCustomerGSTNumber(String customerGSTNumber) {
        this.customerGSTNumber = customerGSTNumber;
    }

    public String getCustomerLatitude() {
        return customerLatitude;
    }

    public void setCustomerLatitude(String customerLatitude) {
        this.customerLatitude = customerLatitude;
    }

    public String getCustomerLongitude() {
        return customerLongitude;
    }

    public void setCustomerLongitude(String customerLongitude) {
        this.customerLongitude = customerLongitude;
    }

    public String getCustomerMaskedContactNumber() {
        return customerMaskedContactNumber;
    }

    public void setCustomerMaskedContactNumber(String customerMaskedContactNumber) {
        this.customerMaskedContactNumber = customerMaskedContactNumber;
    }

    public String getCustomerMobile() {
        return customerMobile;
    }

    public void setCustomerMobile(String customerMobile) {
        this.customerMobile = customerMobile;
    }

    public String getCustomerName() {
        return customerName;
    }

    public void setCustomerName(String customerName) {
        this.customerName = customerName;
    }

    public String getCustomerPincode() {
        return customerPincode;
    }

    public void setCustomerPincode(String customerPincode) {
        this.customerPincode = customerPincode;
    }

    public String getCustomerTelephone() {
        return customerTelephone;
    }

    public void setCustomerTelephone(String customerTelephone) {
        this.customerTelephone = customerTelephone;
    }

    public boolean isToPayCustomer() {
        return toPayCustomer;
    }

    public void setToPayCustomer(boolean toPayCustomer) {
        toPayCustomer = toPayCustomer;
    }

    public String getOriginArea() {
        return originArea;
    }

    public void setOriginArea(String originArea) {
        this.originArea = originArea;
    }

    public String getSender() {
        return sender;
    }

    public void setSender(String sender) {
        this.sender = sender;
    }

    public String getVendorCode() {
        return vendorCode;
    }

    public void setVendorCode(String vendorCode) {
        this.vendorCode = vendorCode;
    }

    // Constructors, getters, and setters
}