提交 30815ac2 作者: xiaowang

接口文档显示属性名称

上级 f21ba0cb
...@@ -2,6 +2,7 @@ package com.mmc.iuav.user.controller.wallet; ...@@ -2,6 +2,7 @@ package com.mmc.iuav.user.controller.wallet;
import com.mmc.iuav.response.ResultBody; import com.mmc.iuav.response.ResultBody;
import com.mmc.iuav.user.controller.BaseController; import com.mmc.iuav.user.controller.BaseController;
import com.mmc.iuav.user.entity.wallet.UserBillingDetailVO;
import com.mmc.iuav.user.model.dto.wallet.WithdrawalApplyDTO; import com.mmc.iuav.user.model.dto.wallet.WithdrawalApplyDTO;
import com.mmc.iuav.user.model.qo.wallet.WalletFlowQO; import com.mmc.iuav.user.model.qo.wallet.WalletFlowQO;
import com.mmc.iuav.user.model.qo.wallet.WithdrawalApplyQO; import com.mmc.iuav.user.model.qo.wallet.WithdrawalApplyQO;
...@@ -35,16 +36,16 @@ public class WithdrawalController extends BaseController { ...@@ -35,16 +36,16 @@ public class WithdrawalController extends BaseController {
} }
@ApiOperation(value = "个人提现明细列表") @ApiOperation(value = "个人提现明细列表")
@ApiResponses({@ApiResponse(code = 200, message = "OK", response = ResultBody.class)}) @ApiResponses({@ApiResponse(code = 200, message = "OK", response = UserBillingDetailVO.class)})
@PostMapping("withdrawalList") @PostMapping("withdrawalList")
public ResultBody withdrawalList(HttpServletRequest request, @RequestBody WalletFlowQO walletFlowQO) { public ResultBody<UserBillingDetailVO> withdrawalList(HttpServletRequest request, @RequestBody WalletFlowQO walletFlowQO) {
return withdrawalService.withdrawalList(this.getUserLoginInfoFromRedis(request).getUserAccountId(), walletFlowQO); return withdrawalService.withdrawalList(this.getUserLoginInfoFromRedis(request).getUserAccountId(), walletFlowQO);
} }
@ApiOperation(value = "PC端-提现管理-分页查询") @ApiOperation(value = "PC端-提现管理-分页查询")
@ApiResponses({@ApiResponse(code = 200, message = "OK", response = WithdrawalApplyDTO.class)}) @ApiResponses({@ApiResponse(code = 200, message = "OK", response = WithdrawalApplyDTO.class)})
@PostMapping("listPageWithdrawalApply") @PostMapping("listPageWithdrawalApply")
public ResultBody listPageWithdrawalApply( public ResultBody<WithdrawalApplyDTO> listPageWithdrawalApply(
@ApiParam(value = "提现管理查询QO", required = true) @RequestBody WithdrawalApplyQO param) { @ApiParam(value = "提现管理查询QO", required = true) @RequestBody WithdrawalApplyQO param) {
return ResultBody.success(withdrawalService.listPageWithdrawalApply(param)); return ResultBody.success(withdrawalService.listPageWithdrawalApply(param));
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论