| | |
| | | package com.jttech.pfcs.services; |
| | | |
| | | import com.jttech.pfcs.vo.req.ReqEPCSnglTranType; |
| | | import com.jttech.pfcs.vo.req.ReqTranQryType; |
| | | import com.jttech.pfcs.vo.resp.RspEPCSnglTranType; |
| | | import com.jttech.pfcs.vo.resp.RspTranQryType; |
| | | |
| | | /** |
| | | * @author wanghc |
| | | * @version 1.0.0 |
| | |
| | | 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); |
| | | } |