| | |
| | | **/ |
| | | @Slf4j |
| | | @RestController |
| | | @CrossOrigin("*") |
| | | @RequestMapping(value = "/api/member") |
| | | @RequiredArgsConstructor |
| | | @Api(value = "ApiMallMemberController", tags = "商城用户接口类") |
| | |
| | | return iApiMallAgentService.agentApply(apiAgentApplyDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "代理申请信息") |
| | | @GetMapping(value = "/agentApplyInfo") |
| | | public FebsResponse agentApplyInfo() { |
| | | return memberService.agentApplyInfo(); |
| | | } |
| | | |
| | | @ApiOperation(value = "合伙人权益") |
| | | @GetMapping(value = "/agentDetail") |
| | | public FebsResponse agentDetail() { |
| | | return memberService.agentDetail(); |
| | | } |
| | | |
| | | @ApiOperation(value = "活动公告") |
| | | @GetMapping(value = "/activityInfo") |
| | | public FebsResponse activityInfo() { |
| | | return memberService.activityInfo(); |
| | | } |
| | | |
| | | } |