|
@@ -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));
|
|
|
}
|
|
|
|