package org.jeecg.modules.system.service; import com.baomidou.mybatisplus.extension.service.IService; import org.jeecg.modules.system.entity.SysThirdAccount; import org.jeecg.modules.system.entity.SysUser; import java.util.List; /** * @Description: 第三方登录账号表 * @Author: jeecg-boot * @Date: 2020-11-17 * @Version: V1.0 */ public interface ISysThirdAccountService extends IService { /**更新第三方账户信息*/ void updateThirdUserId(SysUser sysUser,String thirdUserUuid); /**创建第三方用户*/ SysUser createUser(String phone, String thirdUserUuid); /** 根据本地userId查询数据 */ SysThirdAccount getOneBySysUserId(String sysUserId, String thirdType); /** 根据第三方userId查询数据 */ SysThirdAccount getOneByThirdUserId(String thirdUserId, String thirdType); /** * 通过 sysUsername 集合批量查询 * * @param sysUsernameArr username集合 * @param thirdType 第三方类型 * @return */ List listThirdUserIdByUsername(String[] sysUsernameArr, String thirdType); }