Advertisement
naimul64

TxnInfoFromSwitchDto

Aug 9th, 2017
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.53 KB | None | 0 0
  1. package com.progoti.surecash.dto;
  2.  
  3. import java.util.Date;
  4.  
  5. /**
  6.  * Created by insan on 8/9/17.
  7.  * Progoti Systems Limited.
  8.  */
  9. public class TxnInfoFromSwitchDto {
  10.     String srcAc;
  11.     String destAc;
  12.     Double amount;
  13.     String txnId;
  14.     String revTxnId;
  15.     String txnStatus;
  16.     String txnCode;
  17.     Date txnDate;
  18.  
  19.     public String getSrcAc() {
  20.         return srcAc;
  21.     }
  22.  
  23.     public void setSrcAc(String srcAc) {
  24.         this.srcAc = srcAc;
  25.     }
  26.  
  27.     public String getDestAc() {
  28.         return destAc;
  29.     }
  30.  
  31.     public void setDestAc(String destAc) {
  32.         this.destAc = destAc;
  33.     }
  34.  
  35.     public Double getAmount() {
  36.         return amount;
  37.     }
  38.  
  39.     public void setAmount(Double amount) {
  40.         this.amount = amount;
  41.     }
  42.  
  43.     public String getTxnId() {
  44.         return txnId;
  45.     }
  46.  
  47.     public void setTxnId(String txnId) {
  48.         this.txnId = txnId;
  49.     }
  50.  
  51.     public String getRevTxnId() {
  52.         return revTxnId;
  53.     }
  54.  
  55.     public void setRevTxnId(String revTxnId) {
  56.         this.revTxnId = revTxnId;
  57.     }
  58.  
  59.     public String getTxnStatus() {
  60.         return txnStatus;
  61.     }
  62.  
  63.     public void setTxnStatus(String txnStatus) {
  64.         this.txnStatus = txnStatus;
  65.     }
  66.  
  67.     public String getTxnCode() {
  68.         return txnCode;
  69.     }
  70.  
  71.     public void setTxnCode(String txnCode) {
  72.         this.txnCode = txnCode;
  73.     }
  74.  
  75.     public Date getTxnDate() {
  76.         return txnDate;
  77.     }
  78.  
  79.     public void setTxnDate(Date txnDate) {
  80.         this.txnDate = txnDate;
  81.     }
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement