Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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;
8
	private int quantity;
9
	private float mop;
10
 
11
	public ItemWiseTertiaryModel(String brand, String modelName, String modelNumber, int quantity, float mop) {
12
		super();
13
		this.brand = brand;
14
		this.modelName = modelName;
15
		this.modelNumber = modelNumber;
16
		this.quantity = quantity;
17
		this.mop = mop;
18
	}
19
 
20
	public String getBrand() {
21
		return brand;
22
	}
23
 
24
	public void setBrand(String brand) {
25
		this.brand = brand;
26
	}
27
 
28
	public String getModelName() {
29
		return modelName;
30
	}
31
 
32
	public void setModelName(String modelName) {
33
		this.modelName = modelName;
34
	}
35
 
36
	public String getModelNumber() {
37
		return modelNumber;
38
	}
39
 
40
	public void setModelNumber(String modelNumber) {
41
		this.modelNumber = modelNumber;
42
	}
43
 
44
	public int getQuantity() {
45
		return quantity;
46
	}
47
 
48
	public void setQuantity(int quantity) {
49
		this.quantity = quantity;
50
	}
51
 
52
	public float getMop() {
53
		return mop;
54
	}
55
 
56
	public void setMop(float mop) {
57
		this.mop = mop;
58
	}
59
 
60
	@Override
61
	public String toString() {
62
		return "ItemWiseTertiaryModel [brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber
63
				+ ", quantity=" + quantity + ", mop=" + mop + "]";
64
	}
65
 
66
}