[매입] mg_recv_svc → 전문수신 @Service (ACM-MG-004)
This commit is contained in:
parent
e68e710f0a
commit
b1d7257091
1 changed files with 13 additions and 0 deletions
|
|
@ -0,0 +1,13 @@
|
|||
package com.klaro.acquirecore.acquiring.repository;
|
||||
|
||||
import com.klaro.acquirecore.acquiring.dto.TxRequest;
|
||||
|
||||
/**
|
||||
* 거래 DB 접근 인터페이스 (스텁)
|
||||
* Legacy: mg_recv_svc.pgc의 DB 처리 부분
|
||||
*/
|
||||
public interface TxRepository {
|
||||
|
||||
void save(TxRequest request);
|
||||
TxRequest findByTraceNo(String traceNo);
|
||||
}
|
||||
Reference in a new issue