Subversion Repositories SmartDukaan

Rev

Rev 30219 | Rev 31684 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30219 Rev 31180
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
-
 
3
import com.spice.profitmandi.common.enumuration.CounterSize;
3
import com.spice.profitmandi.common.enumuration.FofoType;
4
import com.spice.profitmandi.common.enumuration.FofoType;
4
 
5
 
5
public class CustomRetailer {
6
public class CustomRetailer {
6
	private int partnerId;
7
	private int partnerId;
7
	private String code;
8
	private String code;
Line 23... Line 24...
23
	private String displayName;
24
	private String displayName;
24
	private int warehouseId;
25
	private int warehouseId;
25
	private String pan;
26
	private String pan;
26
	private FofoType fofoType;
27
	private FofoType fofoType;
27
 
28
 
-
 
29
	private CounterSize counterSize;
-
 
30
 
28
	// Derived fields to be set as required
31
	// Derived fields to be set as required
29
 
32
 
-
 
33
	public CounterSize getCounterSize() {
-
 
34
		return counterSize;
-
 
35
	}
-
 
36
 
-
 
37
	public void setCounterSize(CounterSize counterSize) {
-
 
38
		this.counterSize = counterSize;
-
 
39
	}
-
 
40
 
30
	public String getPan() {
41
	public String getPan() {
31
		return pan;
42
		return pan;
32
	}
43
	}
33
 
44
 
34
	public FofoType getFofoType() {
45
	public FofoType getFofoType() {
Line 140... Line 151...
140
	@Override
151
	@Override
141
	public String toString() {
152
	public String toString() {
142
		return "CustomRetailer [partnerId=" + partnerId + ", code=" + code + ", cartId=" + cartId + ", businessName="
153
		return "CustomRetailer [partnerId=" + partnerId + ", code=" + code + ", cartId=" + cartId + ", businessName="
143
				+ businessName + ", address=" + address + ", mobileNumber=" + mobileNumber + ", gstNumber=" + gstNumber
154
				+ businessName + ", address=" + address + ", mobileNumber=" + mobileNumber + ", gstNumber=" + gstNumber
144
				+ ", email=" + email + ", displayName=" + displayName + ", warehouseId=" + warehouseId + ", pan=" + pan
155
				+ ", email=" + email + ", displayName=" + displayName + ", warehouseId=" + warehouseId + ", pan=" + pan
145
				+ ", fofoType=" + fofoType + "]";
156
				+ ", fofoType=" + fofoType + ", counterSize=" + counterSize + "]";
146
	}
157
	}
147
 
158
 
148
}
159
}