Subversion Repositories SmartDukaan

Rev

Rev 28004 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28004 Rev 28020
Line 1... Line 1...
1
package com.spice.profitmandi.dao.model;
1
package com.spice.profitmandi.dao.model;
2
 
2
 
3
public class FofoIdItemDetailModel {
3
public class FofoIdItemDetailModel {
-
 
4
	private int warehouseId;
4
	private int fofoId;
5
	private int fofoId;
5
	private long qty;
6
	private long qty;
6
	private String brand;
7
	private String brand;
7
	private String modelName;
8
	private String modelName;
8
	private String modelNumber;
9
	private String modelNumber;
9
	private int catalogItemId;
10
	private int catalogItemId;
10
 
11
 
11
	public FofoIdItemDetailModel(int fofoId, long qty, String brand, String modelName, String modelNumber,
12
	public FofoIdItemDetailModel(int warehouseId, int fofoId, long qty, String brand, String modelName,
12
			int catalogItemId) {
13
			String modelNumber, int catalogItemId) {
13
		super();
14
		super();
-
 
15
		this.warehouseId = warehouseId;
14
		this.fofoId = fofoId;
16
		this.fofoId = fofoId;
15
		this.qty = qty;
17
		this.qty = qty;
16
		this.brand = brand;
18
		this.brand = brand;
17
		this.modelName = modelName;
19
		this.modelName = modelName;
18
		this.modelNumber = modelNumber;
20
		this.modelNumber = modelNumber;
Line 65... Line 67...
65
 
67
 
66
	public void setCatalogItemId(int catalogItemId) {
68
	public void setCatalogItemId(int catalogItemId) {
67
		this.catalogItemId = catalogItemId;
69
		this.catalogItemId = catalogItemId;
68
	}
70
	}
69
 
71
 
-
 
72
	public int getWarehouseId() {
-
 
73
		return warehouseId;
-
 
74
	}
-
 
75
 
-
 
76
	public void setWarehouseId(int warehouseId) {
-
 
77
		this.warehouseId = warehouseId;
-
 
78
	}
-
 
79
 
70
	@Override
80
	@Override
71
	public String toString() {
81
	public String toString() {
72
		return "FofoIdItemDetailModel [fofoId=" + fofoId + ", qty=" + qty + ", brand=" + brand + ", modelName="
82
		return "FofoIdItemDetailModel [warehouseId=" + warehouseId + ", fofoId=" + fofoId + ", qty=" + qty + ", brand="
73
				+ modelName + ", modelNumber=" + modelNumber + ", catalogItemId=" + catalogItemId + "]";
83
				+ brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber + ", catalogItemId="
-
 
84
				+ catalogItemId + "]";
74
	}
85
	}
75
 
86
 
76
}
87
}