-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathWalletDto.java
More file actions
50 lines (34 loc) · 1.05 KB
/
WalletDto.java
File metadata and controls
50 lines (34 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.edureka.wallet.model;
import java.io.Serializable;
public class WalletDto implements Serializable {
//Test comment added
private static final long serialVersionUID = 7744691402722556258L;
private Float refundableCredit;
private Float refundableDebit;
private Float nonRefundableCredit;
private Float nonRefundableDebit;
public Float getRefundableCredit() {
return refundableCredit;
}
public void setRefundableCredit(Float refundableCredit) {
this.refundableCredit = refundableCredit;
}
public Float getRefundableDebit() {
return refundableDebit;
}
public void setRefundableDebit(Float refundableDebit) {
this.refundableDebit = refundableDebit;
}
public Float getNonRefundableCredit() {
return nonRefundableCredit;
}
public void setNonRefundableCredit(Float nonRefundableCredit) {
this.nonRefundableCredit = nonRefundableCredit;
}
public Float getNonRefundableDebit() {
return nonRefundableDebit;
}
public void setNonRefundableDebit(Float nonRefundableDebit) {
this.nonRefundableDebit = nonRefundableDebit;
}
}