[매입] mg_recv_svc → 전문수신 @Service (ACM-MG-004)

This commit is contained in:
forge-bot 2026-07-18 11:10:34 +00:00
parent 8854396cae
commit e68e710f0a

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