RoleService.java
318 Bytes
package com.bsth.service.sys;
import java.util.Map;
import com.bsth.entity.sys.Role;
import com.bsth.service.BaseService;
public interface RoleService extends BaseService<Role, Integer>{
Map<String, Object> settRoleModules(Integer roleId, String mIds);
Map<String, Object> roleInfo(Integer id);
}