Browse Source

零星支付加个其他类型

周箭河 5 năm trước cách đây
mục cha
commit
102c60ecbb

+ 1 - 1
mec-web/src/main/java/com/ym/mec/web/controller/StudentPaymentOrderController.java

@@ -226,7 +226,7 @@ public class StudentPaymentOrderController extends BaseController {
     @GetMapping("/getOrderStatus")
     @PreAuthorize("@pcs.hasPermissions('order/getOrderStatus')")
     @ApiImplicitParams({@ApiImplicitParam(name = "id", value = "订单id", required = true, dataType = "int")})
-    public HttpResponseResult<Boolean> getOrderStatus(Long id) {
+    public HttpResponseResult<Boolean> getOrderStatus(Long id) throws Exception {
         return succeed(studentPaymentOrderService.getOrderStatus(id));
     }