RoleService.java 221 Bytes
package com.bsth.service;

import java.util.Map;

import com.bsth.entity.sys.Role;

public interface RoleService extends BaseService<Role, Integer>{

	Map<String, Object> settRoleModules(Integer roleId, String mIds);
	
}