com.zznote.basecommon.dao.TUserRoleDao Maven / Gradle / Ivy
The newest version!
package com.zznote.basecommon.dao;
import com.zznote.basecommon.common.mapper.BaseMapperPlus;
import com.zznote.basecommon.entity.system.TUserRole;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* 用户和角色关联表
*
* @author zhangzhen
* @email [email protected]
* @date 2022-04-12 17:04:17
*/
@Mapper
public interface TUserRoleDao extends BaseMapperPlus {
List selectUserIdsByRoleId(Long roleId);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy