Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.util;import java.time.LocalDateTime;import in.shop2020.model.v1.order.WalletReferenceType;public class WalletHistoryModel {private int fofoId;private WalletReferenceType walletReferenceType;private double amount;private String description;private LocalDateTime businessDate;@Overridepublic String toString() {return "WalletHistoryModel [fofoId=" + fofoId + ", walletReferenceType=" + walletReferenceType + ", amount="+ amount + ", description=" + description + ", businessDate=" + businessDate + "]";}public int getFofoId() {return fofoId;}public void setFofoId(int fofoId) {this.fofoId = fofoId;}public WalletReferenceType getWalletReferenceType() {return walletReferenceType;}public void setWalletReferenceType(WalletReferenceType walletReferenceType) {this.walletReferenceType = walletReferenceType;}public double getAmount() {return amount;}public void setAmount(double amount) {this.amount = amount;}public String getDescription() {return description;}public void setDescription(String description) {this.description = description;}public LocalDateTime getBusinessDate() {return businessDate;}public void setBusinessDate(LocalDateTime businessDate) {this.businessDate = businessDate;}}