[매입] mg_recv_svc → 전문수신 @Service (ACM-MG-004)
This commit is contained in:
parent
867a51a1cd
commit
a672ab8b3a
1 changed files with 83 additions and 0 deletions
|
|
@ -0,0 +1,83 @@
|
||||||
|
package com.klaro.acquirecore.acquiring.codec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 파싱된 전문 데이터 객체
|
||||||
|
*/
|
||||||
|
public class ParsedMessage {
|
||||||
|
|
||||||
|
private String messageType;
|
||||||
|
private String txId;
|
||||||
|
private String txCode;
|
||||||
|
private String merchantId;
|
||||||
|
private String cardNumber;
|
||||||
|
private String amount;
|
||||||
|
private String approvalCode;
|
||||||
|
private String trailer;
|
||||||
|
|
||||||
|
public ParsedMessage() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMessageType() {
|
||||||
|
return messageType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMessageType(String messageType) {
|
||||||
|
this.messageType = messageType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTxId() {
|
||||||
|
return txId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTxId(String txId) {
|
||||||
|
this.txId = txId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTxCode() {
|
||||||
|
return txCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTxCode(String txCode) {
|
||||||
|
this.txCode = txCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMerchantId() {
|
||||||
|
return merchantId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMerchantId(String merchantId) {
|
||||||
|
this.merchantId = merchantId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCardNumber() {
|
||||||
|
return cardNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCardNumber(String cardNumber) {
|
||||||
|
this.cardNumber = cardNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAmount() {
|
||||||
|
return amount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAmount(String amount) {
|
||||||
|
this.amount = amount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getApprovalCode() {
|
||||||
|
return approvalCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setApprovalCode(String approvalCode) {
|
||||||
|
this.approvalCode = approvalCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTrailer() {
|
||||||
|
return trailer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTrailer(String trailer) {
|
||||||
|
this.trailer = trailer;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in a new issue