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.
23 lines
499 B
Java
23 lines
499 B
Java
package com.glxp.api.dao.auth;
|
|
|
|
import com.glxp.api.entity.auth.SysRoleMenu;
|
|
import com.glxp.api.req.auth.FilterRoleMenuRequest;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface SysRoleMenuMapper {
|
|
|
|
|
|
List<SysRoleMenu> selectRoleMenuList(FilterRoleMenuRequest sysRoleMenu);
|
|
|
|
int deleteById(Long id);
|
|
|
|
int deleteByList(@Param("ids") List<Long> ids);
|
|
|
|
int insertBatch(List<SysRoleMenu> list);
|
|
|
|
}
|