| | |
| | | } |
| | | |
| | | /** |
| | | * 会员列表-系统拨付 |
| | | */ |
| | | @PostMapping("updateSystemPay") |
| | | @ControllerEndpoint(operation = "会员列表-系统拨付", exceptionMessage = "操作失败") |
| | | public FebsResponse updateSystemPay(@Valid MallSystemPayDto mallSystemPayDto) { |
| | | return mallMemberService.updateSystemPay(mallSystemPayDto); |
| | | } |
| | | |
| | | /** |
| | | * 资金流水-列表 |
| | | * @param moneyFlowListDto |
| | | * @param request |
| | |
| | | } |
| | | |
| | | /** |
| | | * 代理列表-设置代理级别 |
| | | */ |
| | | @PostMapping("agentLevelSetUpdate") |
| | | @ControllerEndpoint(operation = "代理列表-设置代理级别", exceptionMessage = "操作失败") |
| | | public FebsResponse agentLevelSetUpdate(@Valid AgentLevelSetUpdateDto agentLevelSetUpdateDto) { |
| | | return mallMemberService.agentLevelSetUpdate(agentLevelSetUpdateDto); |
| | | } |
| | | |
| | | /** |
| | | * 奖励设置-列表 |
| | | * @param rankAwardDto |
| | | * @param request |
| | |
| | | return mallMemberService.updateNewsInfo(mallNewsInfoDto); |
| | | } |
| | | |
| | | |
| | | @PostMapping("resetPwd/{id}") |
| | | @ControllerEndpoint(operation = "会员列表---重置密码", exceptionMessage = "重置密码失败") |
| | | public FebsResponse resetPwd(@PathVariable("id") Long id) { |
| | | return mallMemberService.resetPwd(id); |
| | | } |
| | | |
| | | |
| | | |