Pu Zhibing
2025-02-19 81e2eb4dd2e27da3c4cc447d6aeb9150a5ff7464
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
}