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