Subversion Repositories SmartDukaan

Rev

Rev 31860 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31860 Rev 37102
Line 22... Line 22...
22
	@Column(name="counter_id")
22
	@Column(name="counter_id")
23
	private Integer counterId;
23
	private Integer counterId;
24
	
24
	
25
	@Column(name = "isActive")
25
	@Column(name = "isActive")
26
	private boolean active;
26
	private boolean active;
27
	
-
 
28
	@Column(name = "isFofo")
-
 
29
	private boolean isFofo;
-
 
30
	
27
 
31
	@Column(name = "bulkShipmentAmountLimit")
-
 
32
	private float bulkShipmentAmountLimit;
-
 
33
	
-
 
34
	public int getId() {
28
	public int getId() {
35
		return id;
29
		return id;
36
	}
30
	}
37
	public void setId(int id) {
31
	public void setId(int id) {
38
		this.id = id;
32
		this.id = id;
Line 48... Line 42...
48
		return active;
42
		return active;
49
	}
43
	}
50
	public void setActive(boolean active) {
44
	public void setActive(boolean active) {
51
		this.active = active;
45
		this.active = active;
52
	}
46
	}
53
	public float getBulkShipmentAmountLimit() {
-
 
54
		return bulkShipmentAmountLimit;
-
 
55
	}
-
 
56
	public void setBulkShipmentAmountLimit(float bulkShipmentAmountLimit) {
-
 
57
		this.bulkShipmentAmountLimit = bulkShipmentAmountLimit;
-
 
58
	}
-
 
59
	
47
 
60
	public boolean isFofo() {
-
 
61
		return isFofo;
-
 
62
	}
-
 
63
	
-
 
64
	public void setFofo(boolean isFofo) {
-
 
65
		this.isFofo = isFofo;
-
 
66
	}
-
 
67
	
-
 
68
	@Override
48
	@Override
69
	public int hashCode() {
49
	public int hashCode() {
70
		final int prime = 31;
50
		final int prime = 31;
71
		int result = 1;
51
		int result = 1;
72
		result = prime * result + id;
52
		result = prime * result + id;
Line 86... Line 66...
86
		return true;
66
		return true;
87
	}
67
	}
88
	
68
	
89
	@Override
69
	@Override
90
	public String toString() {
70
	public String toString() {
91
		return "PrivateDealUser [id=" + id + ", counterId=" + counterId + ", active=" + active
71
		return "PrivateDealUser [id=" + id + ", counterId=" + counterId + ", active=" + active + "]";
92
				+ ", bulkShipmentAmountLimit=" + bulkShipmentAmountLimit + ", fofo" + isFofo + "]";
-
 
93
	}
72
	}
94
}
73
}