|
|
|
@ -252,8 +252,9 @@ public class CreatorMiniController extends BaseController { |
|
|
|
//@TokenCheck
|
|
|
|
@ApiOperation(value="查询指定艺术家即将入账收益列表") |
|
|
|
@PostMapping(value = "/queryFrontPreProfit") |
|
|
|
public AjaxResult queryFrontPreProfit(@Validated @RequestBody @ApiParam("即将入账对象") ProfitStatusDto params){ |
|
|
|
return AjaxResult.success(creatorProfitService.queryFrontPreProfit(params.getCreatorId(),params.getType())); |
|
|
|
public TableDataInfo queryFrontPreProfit(@Validated @RequestBody @ApiParam("即将入账对象") ProfitStatusDto params){ |
|
|
|
PageHelper.startPage(params.getPageNum(), params.getPageSize()); |
|
|
|
return getDataTable(creatorProfitService.queryFrontPreProfit(params.getCreatorId(),params.getType())); |
|
|
|
} |
|
|
|
|
|
|
|
//@TokenCheck
|
|
|
|
@ -266,8 +267,9 @@ public class CreatorMiniController extends BaseController { |
|
|
|
//@TokenCheck
|
|
|
|
@ApiOperation(value="查询指定艺术家已入账收益列表") |
|
|
|
@PostMapping(value = "/queryFrontInProfitAmt") |
|
|
|
public AjaxResult queryFrontInProfitAmt(@Validated @RequestBody @ApiParam("已入账对象") ProfitStatusDto params){ |
|
|
|
return AjaxResult.success(creatorProfitService.queryFrontInProfitAmt(params.getCreatorId(),params.getType())); |
|
|
|
public TableDataInfo queryFrontInProfitAmt(@Validated @RequestBody @ApiParam("已入账对象") ProfitStatusDto params){ |
|
|
|
PageHelper.startPage(params.getPageNum(), params.getPageSize()); |
|
|
|
return getDataTable(creatorProfitService.queryFrontInProfitAmt(params.getCreatorId(),params.getType())); |
|
|
|
} |
|
|
|
|
|
|
|
//@TokenCheck
|
|
|
|
@ -280,8 +282,9 @@ public class CreatorMiniController extends BaseController { |
|
|
|
//@TokenCheck
|
|
|
|
@ApiOperation(value="查询指定艺术家转入钱包收益列表") |
|
|
|
@PostMapping(value = "/queryFrontEndProfitAmt") |
|
|
|
public AjaxResult queryFrontEndProfitAmt(@Validated @RequestBody @ApiParam("转入钱包对象") ProfitStatusDto params){ |
|
|
|
return AjaxResult.success(creatorProfitService.queryFrontEndProfitAmt(params.getCreatorId(),params.getType())); |
|
|
|
public TableDataInfo queryFrontEndProfitAmt(@Validated @RequestBody @ApiParam("转入钱包对象") ProfitStatusDto params){ |
|
|
|
PageHelper.startPage(params.getPageNum(), params.getPageSize()); |
|
|
|
return getDataTable(creatorProfitService.queryFrontEndProfitAmt(params.getCreatorId(),params.getType())); |
|
|
|
} |
|
|
|
|
|
|
|
//@TokenCheck
|
|
|
|
|