Subversion Repositories SmartDukaan

Rev

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

Rev 22273 Rev 22356
Line 13... Line 13...
13
	@NotNull
13
	@NotNull
14
    private String name;
14
    private String name;
15
	@NotNull
15
	@NotNull
16
    private String number;
16
    private String number;
17
    private RetailerType type;
17
    private RetailerType type;
-
 
18
    private String gstNumber;
18
    private SaleValue monthlySaleValue;
19
    private SaleValue monthlySaleValue;
19
    private SaleValue smartphoneSaleValue;
20
    private SaleValue smartphoneSaleValue;
20
    private Set<Category> categories;
21
    private Set<Category> categories;
21
    private LineOfBusiness lineOfBusiness;
22
    private LineOfBusiness lineOfBusiness;
22
    private int documentId;
23
    private int documentId;
Line 48... Line 49...
48
	}
49
	}
49
    public void setType(RetailerType type) {
50
    public void setType(RetailerType type) {
50
		this.type = type;
51
		this.type = type;
51
	}
52
	}
52
    
53
    
-
 
54
    public String getGstNumber() {
-
 
55
		return gstNumber;
-
 
56
	}
53
    
57
    
-
 
58
    public void setGstNumber(String gstNumber) {
-
 
59
		this.gstNumber = gstNumber;
-
 
60
	}
54
 
61
 
55
    public SaleValue getMonthlySaleValue() {
62
    public SaleValue getMonthlySaleValue() {
56
        return monthlySaleValue;
63
        return monthlySaleValue;
57
    }
64
    }
58
 
65
 
Line 118... Line 125...
118
		return selfPickup;
125
		return selfPickup;
119
	}
126
	}
120
    public void setSelfPickup(boolean selfPickup) {
127
    public void setSelfPickup(boolean selfPickup) {
121
		this.selfPickup = selfPickup;
128
		this.selfPickup = selfPickup;
122
	}
129
	}
-
 
130
 
-
 
131
	@Override
-
 
132
	public String toString() {
-
 
133
		return "CreateRetailerRequest [name=" + name + ", number=" + number + ", type=" + type + ", gstNumber="
-
 
134
				+ gstNumber + ", monthlySaleValue=" + monthlySaleValue + ", smartphoneSaleValue=" + smartphoneSaleValue
-
 
135
				+ ", categories=" + categories + ", lineOfBusiness=" + lineOfBusiness + ", documentId=" + documentId
-
 
136
				+ ", shop=" + shop + ", shopAddressSameAsRetailerAddress=" + shopAddressSameAsRetailerAddress
-
 
137
				+ ", selfPickup=" + selfPickup + ", address=" + address + "]";
-
 
138
	}
123
    
139
    
124
 
140
 
125
}
141
}