Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
27660 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class InStockBrandItemModel {
4
	private String brand;
5
	private String modelName;
6
	private String modelNumber;
7
	private String color;
8
	private long qty;
9
	private long amount;
10
 
11
	public InStockBrandItemModel(String brand, String modelName, String modelNumber, String color, long qty,
12
			long amount) {
13
		super();
14
		this.brand = brand;
15
		this.modelName = modelName;
16
		this.modelNumber = modelNumber;
17
		this.color = color;
18
		this.qty = qty;
19
		this.amount = amount;
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 long getQty() {
55
		return qty;
56
	}
57
 
58
	public void setQty(long qty) {
59
		this.qty = qty;
60
	}
61
 
62
	public long getAmount() {
63
		return amount;
64
	}
65
 
66
	public void setAmount(long amount) {
67
		this.amount = amount;
68
	}
69
 
70
	@Override
71
	public String toString() {
72
		return "InStockBrandItemModel [brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber
73
				+ ", color=" + color + ", qty=" + qty + ", amount=" + amount + "]";
74
	}
75
 
76
}