Subversion Repositories SmartDukaan

Rev

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

Rev 28664 Rev 28665
Line 46... Line 46...
46
	private int billingWarehouseId;
46
	private int billingWarehouseId;
47
	private int isAvailabilityMonitored;
47
	private int isAvailabilityMonitored;
48
	private long transferDelayInHours;
48
	private long transferDelayInHours;
49
	@Column(name = "state_id")
49
	@Column(name = "state_id")
50
	private int stateId;
50
	private int stateId;
51
	private int source;
51
	private Integer source;
52
 
52
 
53
	public int getId() {
53
	public int getId() {
54
		return id;
54
		return id;
55
	}
55
	}
56
 
56
 
Line 204... Line 204...
204
 
204
 
205
	public int getStateId() {
205
	public int getStateId() {
206
		return stateId;
206
		return stateId;
207
	}
207
	}
208
 
208
 
209
	public void setStateId(int stateId) {
209
	public void setStateId(Integer stateId) {
210
		this.stateId = stateId;
210
		this.stateId = stateId;
211
	}
211
	}
212
 
212
 
213
	public int getSource() {
213
	public Integer getSource() {
214
		return source;
214
		return source;
215
	}
215
	}
216
 
216
 
217
	public void setSource(int source) {
217
	public void setSource(int source) {
218
		this.source = source;
218
		this.source = source;