wanghc
2023-07-04 a042e0e63f86a0880d20e57c14ec4a60b65801fb
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/ITradeService.java
@@ -1,10 +1,5 @@
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
@@ -13,17 +8,9 @@
public interface ITradeService {
    /**
     * 单笔交易
     * @param reqVo
     * excute
     * @param content
     * @return
     */
    RspEPCSnglTranType epcSnglTran(ReqEPCSnglTranType reqVo);
    /**
     * 交易查询
     * @param req
     * @return
     */
    RspTranQryType tranQry(ReqTranQryType req);
    String excute(String url, String content);
}