RoleService.java
502 Bytes
package com.bsth.service.sys;
import java.util.List;
import java.util.Map;
import com.bsth.entity.sys.Role;
import com.bsth.entity.sys.SysUser;
import com.bsth.service.BaseService;
public interface RoleService extends BaseService<Role, Integer>{
Map<String, Object> findSubordinate();
Map<String, Object> add(Role role);
Map<String, Object> settRoleModules(Integer roleId, String mIds);
Map<String, Object> roleInfo(Integer id);
List<Role> findAllByIds(String ids);
}