修正参数名称,deptId改为operId

master
andy 6 years ago committed by Limy
parent 6b25ce30b2
commit 7320ac853c

@ -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";
}

Loading…
Cancel
Save