Subversion Repositories SmartDukaan

Rev

Rev 9404 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9404 vikram.rag 1
package inventory;
2
 
3
 
4
import in.shop2020.model.v1.catalog.status;
5
 
6
public class SnapdealItemForInventory {
7
 
8
	long id;
9
	long availability;
10
	long reserve;
11
	long heldForSource;
12
	long holdInventory;
13
	long defaultInventory;
9534 vikram.rag 14
	long totalHeldInventory;
9404 vikram.rag 15
	boolean isRisky;
16
	status Status;
17
 
9534 vikram.rag 18
 
19
	public SnapdealItemForInventory(long id,long availability,long reserve, long heldForSource, long holdInventory,long defaultInventory,long totalHeldInventory,boolean isRisky,status Status){
9404 vikram.rag 20
		this.id=id;
21
		this.availability=availability;
22
		this.reserve=reserve;
23
		this.heldForSource = heldForSource;
24
		this.holdInventory=holdInventory;
25
		this.defaultInventory=defaultInventory;
9534 vikram.rag 26
		this.totalHeldInventory=totalHeldInventory;
9404 vikram.rag 27
		this.isRisky=isRisky;
28
		this.Status=Status;
29
	}
30
 
31
	public long getId() {
32
		return id;
33
	}
34
 
35
	public void setId(long id) {
36
		this.id = id;
37
	}
38
 
39
	public long getAvailability() {
40
		return availability;
41
	}
42
 
43
	public void setAvailability(long availability) {
44
		this.availability = availability;
45
	}
46
 
47
	public long getReserve() {
48
		return reserve;
49
	}
50
 
51
	public void setReserve(long reserve) {
52
		this.reserve = reserve;
53
	}
54
 
55
	public long getHeldForSource() {
56
		return heldForSource;
57
	}
58
 
59
	public void setHeldForSource(long heldForSource) {
60
		this.heldForSource = heldForSource;
61
	}
62
 
63
	public long getHoldInventory() {
64
		return holdInventory;
65
	}
66
 
67
	public void setHoldInventory(long holdInventory) {
68
		this.holdInventory = holdInventory;
69
	}
70
 
71
	public long getDefaultInventory() {
72
		return defaultInventory;
73
	}
74
 
75
	public void setDefaultInventory(long defaultInventory) {
76
		this.defaultInventory = defaultInventory;
77
	}
78
 
79
	public boolean getRisky() {
80
		return isRisky;
81
	}
82
 
83
	public void setRisky(boolean isRisky) {
84
		this.isRisky = isRisky;
85
	}
86
 
87
	public status getStatus() {
88
		return Status;
89
	}
90
 
91
	public void setStatus(status status) {
92
		Status = status;
93
	}
9534 vikram.rag 94
 
95
	public long getTotalHeldInventory() {
96
		return totalHeldInventory;
97
	}
98
 
99
	public void setTotalHeldInventory(long totalHeldInventory) {
100
		this.totalHeldInventory = totalHeldInventory;
101
	}
102
 
103
	public boolean isRisky() {
104
		return isRisky;
105
	}
9404 vikram.rag 106
 
107
}