Commit 6c99bc10 by tenchiwuyo Committed by 若依

!33 修正参数名称

Merge pull request !33 from tenchiwuyo/master
parents 27dee2a6 f0dadb01
......@@ -71,9 +71,9 @@ public class SysOperlogController extends BaseController
@RequiresPermissions("monitor:operlog:detail")
@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";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment