wanghc
2023-03-09 f429658e8bf3c88c4550171f61d6984033940b54
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.jttech.pfcs.services;
 
import com.jttech.pfcs.vo.req.trade.ReqEPCSnglTranType;
import com.jttech.pfcs.vo.req.trade.ReqTranQryType;
import com.jttech.pfcs.vo.resp.trade.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.trade.RspTranQryType;
 
/**
 * @author wanghc
 * @version 1.0.0
 * @date 2023-03-07
 */
public interface ITradeService {
 
    /**
     * 单笔交易
     * @param reqVo
     * @return
     */
    RspEPCSnglTranType epcSnglTran(ReqEPCSnglTranType reqVo);
 
 
    /**
     * 交易查询
     * @param req
     * @return
     */
    RspTranQryType tranQry(ReqTranQryType req);
}