Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. public class TransactionData implements Serializable {
  2.  
  3. private Long id;
  4. private String userProfileId;
  5. private ChannelCode channelCode;
  6. private TransactionGroup transactionGroup;
  7. private String transactionCategoryCode;
  8. private String transactionCode;
  9. private String transactionId;
  10. private String transactionDescription;
  11. private String transactionDateTime;
  12.  
  13. private TransactionStatus transactionStatus;
  14. private String transactionCurrency;
  15. private BigDecimal transactionAmount;
  16. private BigDecimal transactionAmountEquivalent;
  17. private BigDecimal feeAmount;
  18. private String esbErrorCode;
  19. private String srcSystemErrorCode;
  20. private String errorDesc;
  21. private String coreRefNo;
  22. private String esbRefNo;
  23. private String msgRefNo;
  24. private String srcAccountNo;
  25. private String srcAccountType;
  26. private String srcAccountOwnerName;
  27. private String srcAccountCurrency;
  28. private BigDecimal srcAmount;
  29. private BigDecimal srcAmountEquivalent;
  30. private String srcBankCode;
  31. private String srcBankName;
  32. private String dstAccountNo;
  33. private String dstAccountType;
  34. private String dstAccountOwnerName;
  35. private String dstAccountCurrency;
  36. private BigDecimal dstAmount;
  37. private BigDecimal dstAmountEquivalent;
  38. private String dstBankCode;
  39. private String dstBankName;
  40. private String swiftCode;
  41. private String bpCode;
  42. private String bpServiceNo;
  43. private String bpCustomerName;
  44. private String puCouponCode;
  45. private Date createdDate;
  46. private Integer state;
  47. private String tranAdditionalData1;
  48. private String tranAdditionalData2;
  49.  
  50. private BigDecimal srcTranExchangeRate;
  51. private BigDecimal dstTranExchangeRate;
  52. private int quickAccess;
  53. private Long scheduleTransactionId;
  54. private String massTransactionId;
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement