Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
28004 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class FofoIdQtyModel {
4
 
5
	private int fofoId;
6
	private long qty;
7
 
8
	public FofoIdQtyModel(int fofoId, long qty) {
9
		super();
10
		this.fofoId = fofoId;
11
		this.qty = qty;
12
	}
13
 
14
	public int getFofoId() {
15
		return fofoId;
16
	}
17
 
18
	public void setFofoId(int fofoId) {
19
		this.fofoId = fofoId;
20
	}
21
 
22
	public long getQty() {
23
		return qty;
24
	}
25
 
26
	public void setQty(long qty) {
27
		this.qty = qty;
28
	}
29
 
30
	@Override
31
	public String toString() {
32
		return "InStockModel [fofoId=" + fofoId + ", qty=" + qty + "]";
33
	}
34
 
35
}