RoleService.java 274 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);
	
}