eight
2024-08-13 7660fe12273a6b132256a2fa83ca1b11d6b2381f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.lihu.jh.module.system.api.permission;
 
import cn.lihu.jh.module.system.service.permission.RoleService;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.Collection;
 
/**
 * 角色 API 实现类
 *
 * @author 芋道源码
 */
@Service
public class RoleApiImpl implements RoleApi {
 
    @Resource
    private RoleService roleService;
 
    @Override
    public void validRoleList(Collection<Long> ids) {
        roleService.validateRoleList(ids);
    }
}