package com.artfess.uc.controller; import com.artfess.uc.manager.BizUserExtendManager; import com.artfess.uc.model.BizUserExtend; import com.artfess.base.annotation.ApiGroup; import com.artfess.base.constants.ApiGroupConsts; import com.artfess.base.controller.BaseController; import io.swagger.annotations.Api; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * 用户信息扩展表 前端控制器 * * @company 阿特菲斯信息技术有限公司 * @author 系统管理员 * @since 2024-09-13 */ @RestController @RequestMapping("/bizUserExtend/v1/") @ApiGroup(group = {ApiGroupConsts.GROUP_SYSTEM}) @Api(tags = "个人中心-用户信息扩展") public class BizUserExtendController extends BaseController { }