Subversion Repositories SmartDukaan

Rev

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

Rev 27388 Rev 28653
Line 98... Line 98...
98
	@Transient
98
	@Transient
99
	private Set<Integer> retailerIds = new HashSet<>();
99
	private Set<Integer> retailerIds = new HashSet<>();
100
	
100
	
101
	@Transient
101
	@Transient
102
	private String amountModel;
102
	private String amountModel;
-
 
103
	
-
 
104
	@Transient
-
 
105
	private float schemeValue;
-
 
106
	
-
 
107
	
-
 
108
 
-
 
109
	public float getSchemeValue() {
-
 
110
		return schemeValue;
-
 
111
	}
-
 
112
 
-
 
113
	public void setSchemeValue(float schemeValue) {
-
 
114
		this.schemeValue = schemeValue;
-
 
115
	}
103
 
116
 
104
	@Column(name="partner_type")
117
	@Column(name="partner_type")
105
	@Enumerated(EnumType.STRING)
118
	@Enumerated(EnumType.STRING)
106
	private PartnerType partnerType;
119
	private PartnerType partnerType;
107
 
120
 
Line 161... Line 174...
161
	@Override
174
	@Override
162
	public String toString() {
175
	public String toString() {
163
		return "Scheme [id=" + id + ", name=" + name + ", description=" + description + ", type=" + type
176
		return "Scheme [id=" + id + ", name=" + name + ", description=" + description + ", type=" + type
164
				+ ", amountType=" + amountType + ", amount=" + amount + ", startDateTime=" + startDateTime
177
				+ ", amountType=" + amountType + ", amount=" + amount + ", startDateTime=" + startDateTime
165
				+ ", endDateTime=" + endDateTime + ", createTimestamp=" + createTimestamp + ", activeTimestamp="
178
				+ ", endDateTime=" + endDateTime + ", createTimestamp=" + createTimestamp + ", activeTimestamp="
166
				+ activeTimestamp + ", expireTimestamp=" + expireTimestamp + ", createdBy=" + createdBy + ", cashBack="
179
				+ activeTimestamp + ", expireTimestamp=" + expireTimestamp + ", createdBy=" + createdBy + ", cashback="
167
				+ cashback + ", retailerIds=" + retailerIds + ", partnerType=" + partnerType + ", itemStringMap="
180
				+ cashback + ", retailerIds=" + retailerIds + ", amountModel=" + amountModel + ", schemeValue="
168
				+ itemStringMap + "]";
181
				+ schemeValue + ", partnerType=" + partnerType + ", itemStringMap=" + itemStringMap + "]";
169
	}
182
	}
170
 
183
 
171
	public AmountType getAmountType() {
184
	public AmountType getAmountType() {
172
		return amountType;
185
		return amountType;
173
	}
186
	}