Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
27738 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class OurPurchaseItemModel {
4
	private String brand;
5
	private String modelName;
6
	private String modelNumber;
7
	private String color;
8
	private float value;
9
	private Integer qty;
10
 
11
	public OurPurchaseItemModel(String brand, String modelName, String modelNumber, String color, float value,
12
			Integer qty) {
13
		super();
14
		this.brand = brand;
15
		this.modelName = modelName;
16
		this.modelNumber = modelNumber;
17
		this.color = color;
18
		this.value = value;
19
		this.qty = qty;
20
	}
21
 
22
	public String getBrand() {
23
		return brand;
24
	}
25
 
26
	public void setBrand(String brand) {
27
		this.brand = brand;
28
	}
29
 
30
	public String getModelName() {
31
		return modelName;
32
	}
33
 
34
	public void setModelName(String modelName) {
35
		this.modelName = modelName;
36
	}
37
 
38
	public String getModelNumber() {
39
		return modelNumber;
40
	}
41
 
42
	public void setModelNumber(String modelNumber) {
43
		this.modelNumber = modelNumber;
44
	}
45
 
46
	public String getColor() {
47
		return color;
48
	}
49
 
50
	public void setColor(String color) {
51
		this.color = color;
52
	}
53
 
54
	public float getValue() {
55
		return value;
56
	}
57
 
58
	public void setValue(float value) {
59
		this.value = value;
60
	}
61
 
62
	public Integer getQty() {
63
		return qty;
64
	}
65
 
66
	public void setQty(Integer qty) {
67
		this.qty = qty;
68
	}
69
 
70
	@Override
71
	public String toString() {
72
		return "OurPurchaseItemModel [brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber
73
				+ ", color=" + color + ", value=" + value + ", qty=" + qty + "]";
74
	}
75
 
76
}