|
@@ -127,7 +127,7 @@ public class PaymentController {
|
|
|
return paymentServer.withdrawals();
|
|
|
}
|
|
|
|
|
|
- @ApiOperation("提现订单列表")
|
|
|
+ @ApiOperation("店铺提现订单列表")
|
|
|
@ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
|
@ResourceAuth(value = "admin", type = AuthType.Enterprise)
|
|
|
@ResourceAuth(value = "admin", type = AuthType.Project)
|
|
@@ -136,6 +136,15 @@ public class PaymentController {
|
|
|
return paymentServer.withdrawalsList(withdrawRequestModel);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("店铺收入明细列表")
|
|
|
+ @ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
|
+ @ResourceAuth(value = "admin", type = AuthType.Enterprise)
|
|
|
+ @ResourceAuth(value = "admin", type = AuthType.Project)
|
|
|
+ @RequestMapping(value = "account/withdrawals/detailList", method = RequestMethod.POST)
|
|
|
+ public ResultContent withdrawalsDetailList(@RequestBody WithdrawRequestModel withdrawRequestModel) {
|
|
|
+ return paymentServer.withdrawalsDetailList(withdrawRequestModel);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation("确认分账")
|
|
|
@ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
|
@RequestMapping(value = "subOrdersConfirm", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE)
|