@RequestMapping("edit/{groupId}.htm")
public String edit(@PathVariable("groupId")Long groupId, Model model) {
Group group = groupService.getById(groupId);
List<Group> groups = groupService.getGroupforAgent();
model.addAttribute("group",group);
model.addAttribute("groups",groups);
return "/group/edit";
}
GroupController.java 文件源码
java
阅读 48
收藏 0
点赞 0
评论 0
项目:opencron
作者:
评论列表
文章目录