From 6c34f1964ba08e32be4e8c0ade6ef15d72de7143 Mon Sep 17 00:00:00 2001 From: 20918 <2091823062@qq.com> Date: Wed, 17 Apr 2024 14:41:08 +0800 Subject: [PATCH] userleave --- .../com/ruoyi/web/controller/system/TdLeaveController.java | 5 +++++ .../src/main/resources/mapper/system/TdLeaveMapper.xml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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},