Commit 4f6a96fe14b50e1ccc19308422633c49d4e08cf6
1 parent
26d356d2
线调更新
Showing
1 changed file
with
3 additions
and
0 deletions
src/main/java/com/bsth/service/sys/RoleService.java
| 1 | 1 | package com.bsth.service.sys; |
| 2 | 2 | |
| 3 | +import java.util.List; | |
| 3 | 4 | import java.util.Map; |
| 4 | 5 | |
| 5 | 6 | import com.bsth.entity.sys.Role; |
| ... | ... | @@ -10,4 +11,6 @@ public interface RoleService extends BaseService<Role, Integer>{ |
| 10 | 11 | Map<String, Object> settRoleModules(Integer roleId, String mIds); |
| 11 | 12 | |
| 12 | 13 | Map<String, Object> roleInfo(Integer id); |
| 14 | + | |
| 15 | + List<Role> findAllByIds(String ids); | |
| 13 | 16 | } | ... | ... |