Subversion Repositories SmartDukaan

Rev

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

Rev 30158 Rev 36513
Line 18... Line 18...
18
	private int reference;
18
	private int reference;
19
	private  WalletReferenceType referenceType;
19
	private  WalletReferenceType referenceType;
20
	private LocalDateTime timestamp;
20
	private LocalDateTime timestamp;
21
	private LocalDateTime businessTimestamp;
21
	private LocalDateTime businessTimestamp;
22
	private String description;
22
	private String description;
-
 
23
	private long runningBalance;
23
	public int getId() {
24
	public int getId() {
24
		return id;
25
		return id;
25
	}
26
	}
26
	public void setId(int id) {
27
	public void setId(int id) {
27
		this.id = id;
28
		this.id = id;
Line 90... Line 91...
90
		return description;
91
		return description;
91
	}
92
	}
92
	public void setDescription(String description) {
93
	public void setDescription(String description) {
93
		this.description = description;
94
		this.description = description;
94
	}
95
	}
-
 
96
	public long getRunningBalance() {
-
 
97
		return runningBalance;
-
 
98
	}
-
 
99
	public void setRunningBalance(long runningBalance) {
-
 
100
		this.runningBalance = runningBalance;
-
 
101
	}
95
	@Override
102
	@Override
96
	public String toString() {
103
	public String toString() {
97
		return "WalletSummaryReportModel [id=" + id + ", code=" + code + ", name=" + name + ", email=" + email
104
		return "WalletSummaryReportModel [id=" + id + ", code=" + code + ", name=" + name + ", email=" + email
98
				+ ", phone=" + phone + ", amount=" + amount + ", refundableAmount=" + refundableAmount + ", reference="
105
				+ ", phone=" + phone + ", amount=" + amount + ", refundableAmount=" + refundableAmount + ", reference="
99
				+ reference + ", referenceType=" + referenceType + ", timestamp=" + timestamp + ", businessTimestamp="
106
				+ reference + ", referenceType=" + referenceType + ", timestamp=" + timestamp + ", businessTimestamp="
Line 173... Line 180...
173
			return false;
180
			return false;
174
		return true;
181
		return true;
175
	}
182
	}
176
	public WalletSummaryReportModel(int id, String code, String name, String email, String phone, int amount,
183
	public WalletSummaryReportModel(int id, String code, String name, String email, String phone, int amount,
177
			int refundableAmount, int reference, WalletReferenceType referenceType, LocalDateTime timestamp,
184
			int refundableAmount, int reference, WalletReferenceType referenceType, LocalDateTime timestamp,
178
			LocalDateTime businessTimestamp, String description) {
185
			LocalDateTime businessTimestamp, String description, long runningBalance) {
179
		super();
186
		super();
180
		this.id = id;
187
		this.id = id;
181
		this.code = code;
188
		this.code = code;
182
		this.name = name;
189
		this.name = name;
183
		this.email = email;
190
		this.email = email;
Line 187... Line 194...
187
		this.reference = reference;
194
		this.reference = reference;
188
		this.referenceType = referenceType;
195
		this.referenceType = referenceType;
189
		this.timestamp = timestamp;
196
		this.timestamp = timestamp;
190
		this.businessTimestamp = businessTimestamp;
197
		this.businessTimestamp = businessTimestamp;
191
		this.description = description;
198
		this.description = description;
-
 
199
		this.runningBalance = runningBalance;
192
	}
200
	}
193
 
201
 
194
	
202
	
195
	
203
	
196
 
204