1234567891011121314 |
- package com.fdkankan.ucenter.pay.factory;
- import com.alibaba.fastjson.JSONObject;
- import com.fdkankan.ucenter.vo.request.PlaceOrderParam;
- public interface PayEntity {
- JSONObject scanPay(PlaceOrderParam order) throws Exception;
- JSONObject h5Pay(PlaceOrderParam order, String ip) throws Exception;
- String getType();
- }
|