master
20918 12 months ago
parent 33ffcfec66
commit b3738c9a1b

@ -1,6 +1,9 @@
package com.ruoyi.web.controller.system;
import java.util.List;
import com.ruoyi.common.core.domain.entity.SysUser;
import com.ruoyi.system.service.ISysUserService;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
@ -34,6 +37,7 @@ public class TdLeaveController extends BaseController
@Autowired
private ITdLeaveService tdLeaveService;
@RequiresPermissions("system:leave:view")
@GetMapping()
public String leave()
@ -74,6 +78,7 @@ public class TdLeaveController extends BaseController
@GetMapping("/add")
public String add()
{
return prefix + "/add";
}
@ -84,8 +89,9 @@ public class TdLeaveController extends BaseController
@Log(title = "人员离职", businessType = BusinessType.INSERT)
@PostMapping("/add")
@ResponseBody
public AjaxResult addSave(TdLeave tdLeave)
public AjaxResult addSave(TdLeave tdLeave,ModelMap mmap)
{
mmap.put("addleave",getSysUser());
return toAjax(tdLeaveService.insertTdLeave(tdLeave));
}
@ -124,4 +130,16 @@ public class TdLeaveController extends BaseController
{
return toAjax(tdLeaveService.deleteTdLeaveByIds(ids));
}
/**
*
*/
@RequiresPermissions("system:leave:examine")
@Log(title = "人员离职", businessType = BusinessType.EXAMINE)
@GetMapping( "/examine/{id}")
public String examine(@PathVariable("id") Long id,ModelMap mmap){
TdLeave leaveuser = tdLeaveService.selectTdLeaveById(id);
mmap.put("leaveuser", leaveuser);
return prefix + "/leaveexamine";
}
}

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>
Loading…
Cancel
Save