Subversion Repositories SmartDukaan

Rev

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

Rev 28451 Rev 28709
Line 168... Line 168...
168
	@Column(name = "internal")
168
	@Column(name = "internal")
169
	private boolean internal;
169
	private boolean internal;
170
 
170
 
171
	@Column(name = "bags_last_credited")
171
	@Column(name = "bags_last_credited")
172
	private LocalDateTime bagsLastCredited;
172
	private LocalDateTime bagsLastCredited;
-
 
173
	
-
 
174
	@Column(name = "active_timestamp")
-
 
175
	private LocalDateTime activeTimeStamp;
173
 
176
 
174
	public LocalDateTime getBagsLastCredited() {
177
	public LocalDateTime getBagsLastCredited() {
175
		return bagsLastCredited;
178
		return bagsLastCredited;
176
	}
179
	}
177
 
180
 
Line 287... Line 290...
287
	}
290
	}
288
 
291
 
289
	public void setUserAddress(Address userAddress) {
292
	public void setUserAddress(Address userAddress) {
290
		this.userAddress = userAddress;
293
		this.userAddress = userAddress;
291
	}
294
	}
-
 
295
	
-
 
296
	
-
 
297
 
-
 
298
	public LocalDateTime getActiveTimeStamp() {
-
 
299
		return activeTimeStamp;
-
 
300
	}
-
 
301
 
-
 
302
	public void setActiveTimeStamp(LocalDateTime activeTimeStamp) {
-
 
303
		this.activeTimeStamp = activeTimeStamp;
-
 
304
	}
292
 
305
 
293
	@Override
306
	@Override
294
	public int hashCode() {
307
	public int hashCode() {
295
		final int prime = 31;
308
		final int prime = 31;
296
		int result = 1;
309
		int result = 1;
Line 366... Line 379...
366
	@Override
379
	@Override
367
	public String toString() {
380
	public String toString() {
368
		return "FofoStore [id=" + id + ", code=" + code + ", latitude=" + latitude + ", longitude=" + longitude
381
		return "FofoStore [id=" + id + ", code=" + code + ", latitude=" + latitude + ", longitude=" + longitude
369
				+ ", counterSize=" + counterSize + ", warehouseId=" + warehouseId + ", minimumInvestment="
382
				+ ", counterSize=" + counterSize + ", warehouseId=" + warehouseId + ", minimumInvestment="
370
				+ minimumInvestment + ", graceDate=" + graceDate + ", investmentOk=" + investmentOk + ", active="
383
				+ minimumInvestment + ", graceDate=" + graceDate + ", investmentOk=" + investmentOk + ", active="
371
				+ active + ", userAddress=" + userAddress + ", internal=" + internal + ", graceCount=" + graceCount
384
				+ active + ", userAddress=" + userAddress + ", internal=" + internal + ", bagsLastCredited="
372
				+ "]";
385
				+ bagsLastCredited + ", activeTimeStamp=" + activeTimeStamp + ", graceCount=" + graceCount + "]";
373
	}
386
	}
374
 
387
 
-
 
388
	
-
 
389
 
375
}
390
}
376
391