You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
421 B
Java
19 lines
421 B
Java
3 years ago
|
package com.glxp.api.dao.auth;
|
||
|
|
||
|
|
||
|
import com.glxp.api.entity.auth.SysUserRole;
|
||
|
import com.glxp.api.req.auth.SysUserRoleRequest;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface SysUserRoleMapper {
|
||
|
|
||
|
List<Long> selectUserIdsByRoleId(Long roleId);
|
||
|
|
||
|
int delete(SysUserRoleRequest sysUserRoleRequest);
|
||
|
|
||
|
int insertBatch(@Param("sysUserRoles") List<SysUserRole> sysUserRoles);
|
||
|
|
||
|
}
|