| 27067 |
amit.gupta |
1 |
package com.spice.profitmandi.common.util;
|
|
|
2 |
|
|
|
3 |
import java.time.LocalDateTime;
|
|
|
4 |
|
|
|
5 |
import in.shop2020.model.v1.order.WalletReferenceType;
|
|
|
6 |
|
|
|
7 |
public class WalletHistoryModel {
|
|
|
8 |
private int fofoId;
|
|
|
9 |
private WalletReferenceType walletReferenceType;
|
|
|
10 |
private double amount;
|
|
|
11 |
private String description;
|
|
|
12 |
private LocalDateTime businessDate;
|
|
|
13 |
@Override
|
|
|
14 |
public String toString() {
|
|
|
15 |
return "WalletHistoryModel [fofoId=" + fofoId + ", walletReferenceType=" + walletReferenceType + ", amount="
|
|
|
16 |
+ amount + ", description=" + description + ", businessDate=" + businessDate + "]";
|
|
|
17 |
}
|
|
|
18 |
public int getFofoId() {
|
|
|
19 |
return fofoId;
|
|
|
20 |
}
|
|
|
21 |
public void setFofoId(int fofoId) {
|
|
|
22 |
this.fofoId = fofoId;
|
|
|
23 |
}
|
|
|
24 |
public WalletReferenceType getWalletReferenceType() {
|
|
|
25 |
return walletReferenceType;
|
|
|
26 |
}
|
|
|
27 |
public void setWalletReferenceType(WalletReferenceType walletReferenceType) {
|
|
|
28 |
this.walletReferenceType = walletReferenceType;
|
|
|
29 |
}
|
|
|
30 |
public double getAmount() {
|
|
|
31 |
return amount;
|
|
|
32 |
}
|
|
|
33 |
public void setAmount(double amount) {
|
|
|
34 |
this.amount = amount;
|
|
|
35 |
}
|
|
|
36 |
public String getDescription() {
|
|
|
37 |
return description;
|
|
|
38 |
}
|
|
|
39 |
public void setDescription(String description) {
|
|
|
40 |
this.description = description;
|
|
|
41 |
}
|
|
|
42 |
public LocalDateTime getBusinessDate() {
|
|
|
43 |
return businessDate;
|
|
|
44 |
}
|
|
|
45 |
public void setBusinessDate(LocalDateTime businessDate) {
|
|
|
46 |
this.businessDate = businessDate;
|
|
|
47 |
}
|
|
|
48 |
|
|
|
49 |
}
|