gongfuzhu 1 год назад
Родитель
Сommit
ab25475a78

+ 2 - 2
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/controller/PaymentController.java

@@ -149,10 +149,10 @@ public class PaymentController {
         return paymentServer.withdrawalsList(withdrawRequestModel);
     }
 
-    @ApiOperation("店铺_提现订单列表")
+    @ApiOperation("平台_提现订单列表")
     @ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
     @RequestMapping(value = "account/withdrawals/platform/list", method = RequestMethod.POST)
-    public ResultContent withdrawalsPlatformList(@RequestBody WithdrawRequestModel withdrawRequestModel) {
+    public ResultContent withdrawalsPlatformList(@RequestBody @Valid WithdrawRequestModel withdrawRequestModel) {
         return paymentServer.withdrawalsPlatformList(withdrawRequestModel);
     }