|
@@ -221,7 +221,7 @@ public class PayOrderApi {
|
|
|
@ApiImplicitParam(required = false, name = "orderId", value = "订单id"),
|
|
|
@ApiImplicitParam(required = false, name = "paySuccessCounter", value = "付款次数")
|
|
|
})
|
|
|
- @GetMapping("/payWhetherSuccess")
|
|
|
+ @GetMapping("/result/check")
|
|
|
public ResponseJson<String> payWhetherSuccess(Integer orderId, Integer paySuccessCounter) {
|
|
|
if (null == orderId) {
|
|
|
return ResponseJson.error("订单Id不能为空!", null);
|
|
@@ -238,7 +238,7 @@ public class PayOrderApi {
|
|
|
*/
|
|
|
@ApiOperation("查询本次支付订单结果(旧:/PayOrder/findOrderStatus)")
|
|
|
@ApiImplicitParam(required = false, name = "mbOrderId", value = "平台唯一流水号")
|
|
|
- @GetMapping("/findOrderStatus")
|
|
|
+ @GetMapping("/result/json")
|
|
|
public ResponseJson<JSONObject> getPayOrderResult(String mbOrderId) {
|
|
|
if (null == mbOrderId) {
|
|
|
return ResponseJson.error("平台唯一流水号不能为空!", null);
|