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
24
25
26
27
28
29
package com.ruoyi.sange.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.sange.domain.SystemRole;
import com.ruoyi.sange.mapper.SystemRoleMapper;
import com.ruoyi.sange.service.ISystemRoleService;
import com.ruoyi.sange.warpper.SystemRoleListVo;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @Date 2025/2/19 16:41
 */
@Service
public class SystemRoleServiceImpl extends ServiceImpl<SystemRoleMapper, SystemRole> implements ISystemRoleService {
    
    
    /**
     * 获取列表数据
     * @param name
     * @return
     */
    @Override
    public List<SystemRoleListVo> list(String name) {
        return this.baseMapper.list(name);
    }
}