package com.gkhy.labRiskManage.domain.account.service; import java.util.List; /** * @email 1603559716@qq.com * @author: zf * @date: 2023/4/28 * @time: 16:39 */ public interface SysUserIdentityBindDomainService { boolean insertBatchUserIndentityBind(List identityIds, Long userId); boolean updateBatchUserIndentityBind(List identityIds, Long userId); boolean deleteByUser(Long userId); }