Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23780 ashik.ali 1
package com.spice.profitmandi.common.model;
2
 
3
public class CreateItemRequest {
4
 
5
	private String description;
6
	private String brand;
7
	private String typeString;
8
	private float price;
9
	private int vendorId;
10
 
11
	public String getDescription() {
12
		return description;
13
	}
14
	public void setDescription(String description) {
15
		this.description = description;
16
	}
17
	public String getBrand() {
18
		return brand;
19
	}
20
	public void setBrand(String brand) {
21
		this.brand = brand;
22
	}
23
	public String getTypeString() {
24
		return typeString;
25
	}
26
	public void setTypeString(String typeString) {
27
		this.typeString = typeString;
28
	}
29
	public float getPrice() {
30
		return price;
31
	}
32
	public void setPrice(float price) {
33
		this.price = price;
34
	}
35
	public int getVendorId() {
36
		return vendorId;
37
	}
38
	public void setVendorId(int vendorId) {
39
		this.vendorId = vendorId;
40
	}
41
 
42
	@Override
43
	public String toString() {
44
		return "CreateItemRequest [description=" + description + ", brand=" + brand + ", typeString=" + typeString
45
				+ ", price=" + price + ", vendorId=" + vendorId + "]";
46
	}
47
 
48
}