[매입] mg_recv_svc → 전문수신 @Service (ACM-MG-004)
This commit is contained in:
parent
8854396cae
commit
e68e710f0a
1 changed files with 21 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
package com.klaro.acquirecore.acquiring.dto;
|
||||
|
||||
/**
|
||||
* 거래 응답 DTO
|
||||
*/
|
||||
public class TxResponse {
|
||||
|
||||
private String traceNo;
|
||||
private String txType;
|
||||
private String respCode;
|
||||
private String respMsg;
|
||||
|
||||
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 getRespCode() { return respCode; }
|
||||
public void setRespCode(String respCode) { this.respCode = respCode; }
|
||||
public String getRespMsg() { return respMsg; }
|
||||
public void setRespMsg(String respMsg) { this.respMsg = respMsg; }
|
||||
}
|
||||
Reference in a new issue