Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
27640 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class InStockBrandModel {
4
 
5
	private String brand;
6
	private long qty;
7
	private long amount;
8
 
9
	public InStockBrandModel(String brand, long qty, long amount) {
10
		super();
11
		this.brand = brand;
12
		this.qty = qty;
13
		this.amount = amount;
14
	}
15
 
16
	public String getBrand() {
17
		return brand;
18
	}
19
 
20
	public void setBrand(String brand) {
21
		this.brand = brand;
22
	}
23
 
24
	public long getQty() {
25
		return qty;
26
	}
27
 
28
	public void setQty(long qty) {
29
		this.qty = qty;
30
	}
31
 
32
	public long getAmount() {
33
		return amount;
34
	}
35
 
36
	public void setAmount(long amount) {
37
		this.amount = amount;
38
	}
39
 
40
	@Override
41
	public String toString() {
42
		return "InStockBrandModel [brand=" + brand + ", qty=" + qty + ", amount=" + amount + "]";
43
	}
44
 
45
}