View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;public class BrandRegionMappingModel {private String brand;private int fromWarehouse;private int toWarehouse;private boolean accessory;public String getBrand() {return brand;}public void setBrand(String brand) {this.brand = brand;}public int getFromWarehouse() {return fromWarehouse;}public void setFromWarehouse(int fromWarehouse) {this.fromWarehouse = fromWarehouse;}public int getToWarehouse() {return toWarehouse;}public void setToWarehouse(int toWarehouse) {this.toWarehouse = toWarehouse;}public boolean isAccessory() {return accessory;}public void setAccessory(boolean accessory) {this.accessory = accessory;}@Overridepublic String toString() {return "BrandRegionMappingModel [brand=" + brand + ", fromWarehouse=" + fromWarehouse + ", toWarehouse=" + toWarehouse + ", accessory=" + accessory + "]";}}