Subversion Repositories SmartDukaan

Rev

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

Rev 21923 Rev 22384
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
-
 
3
 
3
public class CustomLineItem {
4
public class CustomLineItem {
4
	private String brand;
5
	private String brand;
5
	private String modelName;
6
	private String modelName;
6
	private String modelNumber;
7
	private String modelNumber;
7
	private String color;
8
	private String color;
8
	private String displayName;
9
	private String displayName;
9
	private float quantity;
10
	private float quantity;
10
	private float unitPrice;
11
	private float unitPrice;
-
 
12
	private String imageUrl;
-
 
13
	
11
	public String getBrand() {
14
	public String getBrand() {
12
		return brand;
15
		return brand;
13
	}
16
	}
14
	public void setBrand(String brand) {
17
	public void setBrand(String brand) {
15
		this.brand = brand;
18
		this.brand = brand;
Line 108... Line 111...
108
	@Override
111
	@Override
109
	public String toString() {
112
	public String toString() {
110
		return "CustomLineItem [brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber
113
		return "CustomLineItem [brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber
111
				+ ", color=" + color + ", quantity=" + quantity + ", unitPrice=" + unitPrice + "]";
114
				+ ", color=" + color + ", quantity=" + quantity + ", unitPrice=" + unitPrice + "]";
112
	}
115
	}
-
 
116
	public String getImageUrl() {
-
 
117
		return imageUrl;
-
 
118
	}
-
 
119
	public void setImageUrl(String imageUrl) {
-
 
120
		this.imageUrl = imageUrl;
-
 
121
	}
113
	
122
	
114
	
123
	
115
}
124
}