Subversion Repositories SmartDukaan

Rev

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

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