Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
31816 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class BrandRegionMappingModel {
4
 
5
    private String brand;
6
    private int fromWarehouse;
7
    private int toWarehouse;
8
    private boolean accessory;
9
 
10
    public String getBrand() {
11
        return brand;
12
    }
13
 
14
    public void setBrand(String brand) {
15
        this.brand = brand;
16
    }
17
 
18
    public int getFromWarehouse() {
19
        return fromWarehouse;
20
    }
21
 
22
    public void setFromWarehouse(int fromWarehouse) {
23
        this.fromWarehouse = fromWarehouse;
24
    }
25
 
26
    public int getToWarehouse() {
27
        return toWarehouse;
28
    }
29
 
30
    public void setToWarehouse(int toWarehouse) {
31
        this.toWarehouse = toWarehouse;
32
    }
33
 
34
    public boolean isAccessory() {
35
        return accessory;
36
    }
37
 
38
    public void setAccessory(boolean accessory) {
39
        this.accessory = accessory;
40
    }
41
 
42
    @Override
43
    public String toString() {
44
        return "BrandRegionMappingModel [brand=" + brand + ", fromWarehouse=" + fromWarehouse + ", toWarehouse=" + toWarehouse + ", accessory=" + accessory + "]";
45
    }
46
 
47
 
48
}