| | |
| | | import com.oying.modules.hwc.domain.HwcResponse; |
| | | import com.oying.utils.enums.PayTypeEnum; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.IOException; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | * @see [类、类#方法、类#成员] |
| | | */ |
| | | HwcResponse pay(String ip, String total, String timeExpire, String description, String openId, |
| | | String orderNum, PayTypeEnum status) throws IOException; |
| | | String orderNum, PayTypeEnum status); |
| | | |
| | | /** |
| | | * <一句话功能简述> |
| | |
| | | * |
| | | * @see [类、类#方法、类#成员] |
| | | */ |
| | | JSONObject query(String orderNum, PayTypeEnum status) throws IOException; |
| | | JSONObject query(String orderNum, PayTypeEnum status); |
| | | |
| | | void closeOrder(String outTradeNo, PayTypeEnum status) throws IOException; |
| | | void closeOrder(String outTradeNo, PayTypeEnum status); |
| | | |
| | | /** |
| | | * <一句话功能简述> |
| | |
| | | * @see [类、类#方法、类#成员] |
| | | */ |
| | | Map<String, String> refund(String returnNum, String orderNum, @NotNull(message = "备注不能为空") String reason, |
| | | long refund, long total, PayTypeEnum payType) throws IOException; |
| | | |
| | | void alipayCallback(HttpServletRequest request, HttpServletResponse response); |
| | | |
| | | void returnNotify(HttpServletRequest request, HttpServletResponse response); |
| | | long refund, long total, PayTypeEnum payType); |
| | | } |