diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdLeaveController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdLeaveController.java index 2fd9b51..a982cd5 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdLeaveController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdLeaveController.java @@ -136,6 +136,10 @@ public class TdLeaveController extends BaseController return toAjax(tdLeaveService.deleteTdLeaveByIds(ids)); } + /** + * 审核保存 + */ + / @RequiresPermissions("system:leave:examine") @Log(title = "人员离职", businessType = BusinessType.EXAMINE) @PostMapping("/examine") @@ -154,6 +158,7 @@ public class TdLeaveController extends BaseController public String examine(@PathVariable("id") Long id,ModelMap mmap){ TdLeave leaveuser = tdLeaveService.selectTdLeaveById(id); mmap.put("leaveuser", leaveuser); + mmap.put("sysuser",getSysUser().getLoginName()); return prefix + "/leaveexamine"; } diff --git a/ruoyi-system/src/main/resources/mapper/system/TdLeaveMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdLeaveMapper.xml index 8cd7964..1e6de47 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdLeaveMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdLeaveMapper.xml @@ -82,8 +82,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" update td_leave - userId = #{userId}, - userName = #{userName}, + user_id = #{userId}, + user_name = #{userName}, country = #{country}, areaname = #{areaname}, leavereason = #{leavereason},