| | |
| | | import cc.mrbird.febs.mall.entity.AppVersion; |
| | | import cc.mrbird.febs.mall.entity.MallMember; |
| | | import cc.mrbird.febs.mall.entity.MallNewsInfo; |
| | | import cc.mrbird.febs.mall.entity.MallShopApply; |
| | | import cc.mrbird.febs.mall.service.IAdminMallMemberService; |
| | | import cc.mrbird.febs.mall.vo.AdminAgentLevelOptionTreeVo; |
| | | import lombok.RequiredArgsConstructor; |
| | |
| | | return mallMemberService.resetPwd(id); |
| | | } |
| | | |
| | | @GetMapping("shopApplyList") |
| | | @ControllerEndpoint(operation = "申请通道列表", exceptionMessage = "获取失败") |
| | | public FebsResponse shopApplyList(MallShopApply mallShopApply, QueryRequest request) { |
| | | return new FebsResponse().success().data(getDataTable(mallMemberService.findShopApplyListInPage(mallShopApply, request))); |
| | | } |
| | | |
| | | @PostMapping("applyCheckAgree/{id}") |
| | | public FebsResponse applyCheckAgree(@PathVariable Long id) { |
| | | mallMemberService.applyCheckAgree(id); |
| | | return new FebsResponse().success().message("操作成功"); |
| | | } |
| | | |
| | | @PostMapping(value = "applyCheckDisAgree/{id}") |
| | | public FebsResponse applyCheckDisAgree(@PathVariable Long id) { |
| | | mallMemberService.applyCheckDisAgree(id); |
| | | return new FebsResponse().success().message("操作成功"); |
| | | } |
| | | |
| | | } |