!33 修正参数名称

Merge pull request !33 from tenchiwuyo/master
master
tenchiwuyo 2018-10-16 19:54:17 +08:00 committed by 若依
commit 6c99bc1059
1 changed files with 2 additions and 2 deletions

View File

@ -71,9 +71,9 @@ public class SysOperlogController extends BaseController
@RequiresPermissions("monitor:operlog:detail") @RequiresPermissions("monitor:operlog:detail")
@GetMapping("/detail/{operId}") @GetMapping("/detail/{operId}")
public String detail(@PathVariable("operId") Long deptId, ModelMap mmap) public String detail(@PathVariable("operId") Long operId, ModelMap mmap)
{ {
mmap.put("operLog", operLogService.selectOperLogById(deptId)); mmap.put("operLog", operLogService.selectOperLogById(operId));
return prefix + "/detail"; return prefix + "/detail";
} }