1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.yuanchu.mom.service;
|
| import com.baomidou.mybatisplus.core.metadata.IPage;
| import com.yuanchu.mom.dto.UserPageDto;
| import com.yuanchu.mom.pojo.Role;
| import com.yuanchu.mom.pojo.User;
|
| import java.util.List;
| import java.util.Map;
|
| public interface RoleService {
|
| List<Role> selectList();
|
| Map<String, Object> selectUserList(IPage<Role> page, Role role);
|
| int delRole(Integer id);
|
| }
|
|