[매입] mg_recv_svc → 전문수신 @Service #6

Open
forge-bot wants to merge 9 commits from forge/ACM-MG-004-attempt-2-run-be8e7d8241de into main
Showing only changes of commit e68e710f0a - Show all commits

View file

@ -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; }
}