gongfuzhu 10 ay önce
ebeveyn
işleme
342bfbedf9

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

@@ -171,6 +171,7 @@ public class PaymentController {
 
     @ApiOperation("店铺已提现订单列表")
     @ResourceAuth(value = "admin", type = AuthType.Enterprise)
+    @ResourceAuth(value = "admin", type = AuthType.Project)
     @RequestMapping(value = "account/shop/withdrawedList", method = RequestMethod.POST)
     public ResultContent<Page<WithdrawListModel>> withdrawedList(@RequestBody @Valid WithdrawedRequestModel withdrawRequestModel) {
         return paymentServer.withdrawedList(withdrawRequestModel);
@@ -179,6 +180,7 @@ public class PaymentController {
     @ApiOperation("已提现明细列表")
     @ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
     @ResourceAuth(value = "admin", type = AuthType.Enterprise)
+    @ResourceAuth(value = "admin", type = AuthType.Project)
     @RequestMapping(value = "account/withdrawalsDetailList", method = RequestMethod.POST)
     public ResultContent withdrawalsDetail(@RequestBody @Valid WithdrawDetailRequestModel withdrawDetailRequestModel) {
         return paymentServer.withdrawalsDetail(withdrawDetailRequestModel);