Rev 21390 | Rev 21431 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.req;import java.util.Set;import com.spice.profitmandi.dao.enumuration.RetailerType;import com.spice.profitmandi.dao.enumuration.SaleValue;public class CreateRetailerRequest {private String name;private String number;private RetailerType type;private SaleValue monthlySaleValue;private SaleValue smartphoneSaleValue;private Set<String> brandNames;private LineOfBusiness lineOfBusiness;private long 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 RetailerType getType() {return type;}public void setType(RetailerType type) {this.type = type;}public SaleValue getMonthlySaleValue() {return monthlySaleValue;}public void setMonthlySaleValue(SaleValue monthlySaleValue) {this.monthlySaleValue = monthlySaleValue;}public SaleValue getSmartphoneSaleValue() {return smartphoneSaleValue;}public void setSmartphoneSaleValue(SaleValue smartphoneSaleValue) {this.smartphoneSaleValue = smartphoneSaleValue;}public Set<String> getBrandNames() {return brandNames;}public void setBrandNames(Set<String> brandNames) {this.brandNames = brandNames;}public LineOfBusiness getLineOfBusiness() {return lineOfBusiness;}public void setLineOfBusiness(LineOfBusiness lineOfBusiness) {this.lineOfBusiness = lineOfBusiness;}public long getDocumentId() {return documentId;}public void setDocumentId(long 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;}}