[매입] mg_recv_svc → 전문수신 @Service (ACM-MG-004)
This commit is contained in:
parent
5fac88c293
commit
8854396cae
1 changed files with 33 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
package com.klaro.acquirecore.acquiring.dto;
|
||||
|
||||
/**
|
||||
* 거래 요청 DTO
|
||||
*/
|
||||
public class TxRequest {
|
||||
|
||||
private String traceNo;
|
||||
private String txType;
|
||||
private String merchantId;
|
||||
private String amount;
|
||||
private String cardNo;
|
||||
private String expiryDate;
|
||||
private String installments;
|
||||
private String messageRaw;
|
||||
|
||||
public String getTraceNo() { return traceNo; }
|
||||
public void setTraceNo(String traceNo) { this.traceNo = traceNo; }
|
||||
public String getTxType() { return txType; }
|
||||
public void setTxType(String txType) { this.txType = txType; }
|
||||
public String getMerchantId() { return merchantId; }
|
||||
public void setMerchantId(String merchantId) { this.merchantId = merchantId; }
|
||||
public String getAmount() { return amount; }
|
||||
public void setAmount(String amount) { this.amount = amount; }
|
||||
public String getCardNo() { return cardNo; }
|
||||
public void setCardNo(String cardNo) { this.cardNo = cardNo; }
|
||||
public String getExpiryDate() { return expiryDate; }
|
||||
public void setExpiryDate(String expiryDate) { this.expiryDate = expiryDate; }
|
||||
public String getInstallments() { return installments; }
|
||||
public void setInstallments(String installments) { this.installments = installments; }
|
||||
public String getMessageRaw() { return messageRaw; }
|
||||
public void setMessageRaw(String messageRaw) { this.messageRaw = messageRaw; }
|
||||
}
|
||||
Reference in a new issue