package com.artfess.uc.manager;

import com.artfess.uc.model.BizUserExtend;
import com.artfess.base.manager.BaseManager;

/**
 * 用户信息扩展表 服务类
 *
 * @author 系统管理员
 * @company 阿特菲斯信息技术有限公司
 * @since 2024-09-13
 */
public interface BizUserExtendManager extends BaseManager<BizUserExtend> {

    /**
     * 判断用户是否已填写个人信息
     *
     * @return 是否已经填写
     */
    Boolean getUserExtendIsExist();

}
