Subversion Repositories SmartDukaan

Rev

Rev 34608 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34608 Rev 34915
Line 10... Line 10...
10
    String storeName;
10
    String storeName;
11
    String status;
11
    String status;
12
    String category;
12
    String category;
13
    String salesManager;
13
    String salesManager;
14
    String rbm;
14
    String rbm;
-
 
15
    String abm;
15
 
16
 
16
 
17
 
17
    public String getBmName() {
18
    public String getBmName() {
18
        return bmName;
19
        return bmName;
19
    }
20
    }
Line 84... Line 85...
84
 
85
 
85
    public void setRbm(String rbm) {
86
    public void setRbm(String rbm) {
86
        this.rbm = rbm;
87
        this.rbm = rbm;
87
    }
88
    }
88
 
89
 
-
 
90
    public String getAbm() {
-
 
91
        return abm;
-
 
92
    }
-
 
93
 
-
 
94
    public void setAbm(String abm) {
-
 
95
        this.abm = abm;
-
 
96
    }
-
 
97
 
89
    @Override
98
    @Override
90
    public boolean equals(Object o) {
99
    public boolean equals(Object o) {
91
        if (this == o) return true;
100
        if (this == o) return true;
92
        if (o == null || getClass() != o.getClass()) return false;
101
        if (o == null || getClass() != o.getClass()) return false;
93
        BIRetailerModel that = (BIRetailerModel) o;
102
        BIRetailerModel that = (BIRetailerModel) o;
94
        return Objects.equals(bmName, that.bmName) && Objects.equals(code, that.code) && Objects.equals(area, that.area) && Objects.equals(city, that.city) && Objects.equals(storeName, that.storeName) && Objects.equals(status, that.status) && Objects.equals(category, that.category) && Objects.equals(salesManager, that.salesManager) && Objects.equals(rbm, that.rbm);
103
        return Objects.equals(bmName, that.bmName) && Objects.equals(code, that.code) && Objects.equals(area, that.area) && Objects.equals(city, that.city) && Objects.equals(storeName, that.storeName) && Objects.equals(status, that.status) && Objects.equals(category, that.category) && Objects.equals(salesManager, that.salesManager) && Objects.equals(rbm, that.rbm) && Objects.equals(abm, that.abm);
95
    }
104
    }
96
 
105
 
97
    @Override
106
    @Override
98
    public int hashCode() {
107
    public int hashCode() {
99
        return Objects.hash(bmName, code, area, city, storeName, status, category, salesManager, rbm);
108
        return Objects.hash(bmName, code, area, city, storeName, status, category, salesManager, rbm, abm);
100
    }
109
    }
101
 
110
 
102
    @Override
111
    @Override
103
    public String toString() {
112
    public String toString() {
104
        return "BIRetailerModel{" +
113
        return "BIRetailerModel{" +
Line 109... Line 118...
109
                ", storeName='" + storeName + '\'' +
118
                ", storeName='" + storeName + '\'' +
110
                ", status='" + status + '\'' +
119
                ", status='" + status + '\'' +
111
                ", category='" + category + '\'' +
120
                ", category='" + category + '\'' +
112
                ", salesManager='" + salesManager + '\'' +
121
                ", salesManager='" + salesManager + '\'' +
113
                ", rbm='" + rbm + '\'' +
122
                ", rbm='" + rbm + '\'' +
-
 
123
                ", abm='" + abm + '\'' +
114
                '}';
124
                '}';
115
    }
125
    }
116
}
126
}