Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

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