Subversion Repositories SmartDukaan

Rev

Rev 27738 | Details | Compare with Previous | Last modification | View Log | RSS feed

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