package com.moral.mapper; import java.util.List; import java.util.Map; import com.moral.common.mapper.BaseMapper; import com.moral.entity.Account; public interface AccountMapper extends BaseMapper { List> getRoleNameByAccountId(Integer accountId); Account getByAccountName(String name); Map getOrganizationIdByAccountId(Integer accountId); }