Subversion Repositories SmartDukaan

Rev

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

Rev 23585 Rev 23740
Line 70... Line 70...
70
	private float amount;
70
	private float amount;
71
	
71
	
72
	@Column(name = "commission")
72
	@Column(name = "commission")
73
	private float commission;
73
	private float commission;
74
	
74
	
-
 
75
	@Column(name = "cashback_timestamp")
-
 
76
	private LocalDateTime cashbackTimestamp;
-
 
77
	
-
 
78
	@Column(name = "cashback_reference")
-
 
79
	private int cashbackReference;
-
 
80
	
-
 
81
	public int getCashbackReference() {
-
 
82
		return cashbackReference;
-
 
83
	}
-
 
84
 
-
 
85
	public void setCashbackReference(int cashbackReference) {
-
 
86
		this.cashbackReference = cashbackReference;
-
 
87
	}
-
 
88
 
-
 
89
	public LocalDateTime getCashbackTimestamp() {
-
 
90
		return cashbackTimestamp;
-
 
91
	}
-
 
92
 
-
 
93
	public void setCashbackTimestamp(LocalDateTime cashbackTimestamp) {
-
 
94
		this.cashbackTimestamp = cashbackTimestamp;
-
 
95
	}
-
 
96
 
75
	@Column(name = "status")
97
	@Column(name = "status")
76
	@Enumerated(EnumType.STRING)
98
	@Enumerated(EnumType.STRING)
77
	private RechargeStatus status;
99
	private RechargeStatus status;
78
	
100
	
79
	@Column(name = "status_message")
101
	@Column(name = "status_message")
Line 252... Line 274...
252
	@Override
274
	@Override
253
	public String toString() {
275
	public String toString() {
254
		return "RechargeTransaction [id=" + id + ", retailerId=" + retailerId + ", requestId=" + requestId
276
		return "RechargeTransaction [id=" + id + ", retailerId=" + retailerId + ", requestId=" + requestId
255
				+ ", providerId=" + providerId + ", operatorId=" + operatorId + ", referenceNumber=" + referenceNumber
277
				+ ", providerId=" + providerId + ", operatorId=" + operatorId + ", referenceNumber=" + referenceNumber
256
				+ ", operatorType=" + operatorType + ", type=" + type + ", amount=" + amount + ", commission="
278
				+ ", operatorType=" + operatorType + ", type=" + type + ", amount=" + amount + ", commission="
-
 
279
				+ commission + ", cashbackTimestamp=" + cashbackTimestamp + ", cashbackReference=" + cashbackReference
257
				+ commission + ", status=" + status + ", statusMessage=" + statusMessage + ", createTimestamp="
280
				+ ", status=" + status + ", statusMessage=" + statusMessage + ", createTimestamp=" + createTimestamp
258
				+ createTimestamp + ", updateTimestamp=" + updateTimestamp + "]";
281
				+ ", updateTimestamp=" + updateTimestamp + ", operatorName=" + operatorName + "]";
259
	}
282
	}
260
        
283
        
261
}
284
}
262
285