package com.ruoyi.sange.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.sange.domain.SystemRole;
|
import com.ruoyi.sange.warpper.SystemRoleListVo;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/2/19 16:40
|
*/
|
public interface SystemRoleMapper extends BaseMapper<SystemRole> {
|
|
|
/**
|
* 获取列表数据
|
* @param name
|
* @return
|
*/
|
List<SystemRoleListVo> list(@Param("name") String name);
|
}
|