分页查询角色信息
public List<Role> getRoles(int page,int size) 中
role.setFunctionIds(functionIds.deleteCharAt(functionIds.length() - 1).toString());
这句话的用意是做什么?
这个方法是查询出角色集合,根据角色id查询auth_role_function,再根据前者查询auth_function,从而达到根据角色id查询出对应的功能集合,这不就可以了吗?
Role这个类对应的数据库的是auth_role,而数据库中auth_role应该只有id,name,哪里来的
FunctionIds这个类?