Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed


package com.spice.profitmandi.web.req;

import java.util.List;

public class CreateRetailerRequestModel {

    private String name;
    private String number;
    private String type;
    private String monthlySaleValue;
    private String smartphoneSaleValue;
    private List<String> brandNames = null;
    private Boolean recharge;
    private Boolean mobile;
    private Boolean accessories;
    private Boolean other1;
    private Boolean other2;
    private String documentId;
    private Shop shop;
    private Address address;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getNumber() {
        return number;
    }

    public void setNumber(String number) {
        this.number = number;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getMonthlySaleValue() {
        return monthlySaleValue;
    }

    public void setMonthlySaleValue(String monthlySaleValue) {
        this.monthlySaleValue = monthlySaleValue;
    }

    public String getSmartphoneSaleValue() {
        return smartphoneSaleValue;
    }

    public void setSmartphoneSaleValue(String smartphoneSaleValue) {
        this.smartphoneSaleValue = smartphoneSaleValue;
    }

    public List<String> getBrandNames() {
        return brandNames;
    }

    public void setBrandNames(List<String> brandNames) {
        this.brandNames = brandNames;
    }

    public Boolean getRecharge() {
        return recharge;
    }

    public void setRecharge(Boolean recharge) {
        this.recharge = recharge;
    }

    public Boolean getMobile() {
        return mobile;
    }

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

    public Boolean getAccessories() {
        return accessories;
    }

    public void setAccessories(Boolean accessories) {
        this.accessories = accessories;
    }

    public Boolean getOther1() {
        return other1;
    }

    public void setOther1(Boolean other1) {
        this.other1 = other1;
    }

    public Boolean getOther2() {
        return other2;
    }

    public void setOther2(Boolean other2) {
        this.other2 = other2;
    }

    public String getDocumentId() {
        return documentId;
    }

    public void setDocumentId(String documentId) {
        this.documentId = documentId;
    }

    public Shop getShop() {
        return shop;
    }

    public void setShop(Shop shop) {
        this.shop = shop;
    }

    public Address getAddress() {
        return address;
    }

    public void setAddress(Address address) {
        this.address = address;
    }

}