xiaoyong931011
2023-05-21 0b3393b2485ef1905f44356e26f5cc1a48be9a83
src/main/java/cc/mrbird/febs/mall/controller/ApiMallMemberController.java
@@ -201,4 +201,22 @@
        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();
    }
}