From 8430d77a62ed5b1cbc1f635ed44ba2a9b5ca5a64 Mon Sep 17 00:00:00 2001 From: zqy <2522236926@qq.com> Date: 星期二, 02 九月 2025 16:07:57 +0800 Subject: [PATCH] 同一用户(电话+姓名相同) 新增用户时 同步uaid和个人简历的信息 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java | 29 +++++++++++++++-------------- 1 files changed, 15 insertions(+), 14 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java index 5c2fb7a..1f630c1 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfCleanController.java @@ -44,6 +44,7 @@ public AjaxResult listAll(ZfClean zfClean){ Integer pageNum = Convert.toInt(ServletUtils.getParameter(PAGE_NUM), 1); Integer pageSize = Convert.toInt(ServletUtils.getParameter(PAGE_SIZE), 10); + return zfCleanService.selectDataList(zfClean, pageNum, pageSize); } @@ -58,25 +59,25 @@ } -// /** -// * 瀵煎嚭淇濇磥鏀剁撼璁板綍鍒楄〃 -// */ -//// @PreAuthorize("@ss.hasPermi('system:property:export')") -// @Log(title = "淇濇磥鏀剁撼璁板綍", businessType = BusinessType.EXPORT) -// @PostMapping("/export") -// public void export(HttpServletResponse response, ZfClean zfClean) -// { -// List<ZfClean> list = zfCleanService.selectByCondition(zfClean); -// log.info("瀵煎嚭璁板綍涓�:{}",list); -// ExcelUtil<ZfClean> util = new ExcelUtil<>(ZfClean.class); -// util.exportExcel(response, list, "淇濇磥鏀剁撼璁板綍鏁版嵁"); -// } /** * 瀵煎嚭淇濇磥鏀剁撼璁板綍鍒楄〃 */ // @PreAuthorize("@ss.hasPermi('system:property:export')") @Log(title = "淇濇磥鏀剁撼璁板綍", businessType = BusinessType.EXPORT) - @PostMapping("/export/{ids}") + @PostMapping("/export") + public void export(HttpServletResponse response, ZfClean zfClean) + { + List<ZfClean> list = zfCleanService.selectByCondition(zfClean); + log.info("瀵煎嚭璁板綍涓�:{}",list); + ExcelUtil<ZfClean> util = new ExcelUtil<>(ZfClean.class); + util.exportExcel(response, list, "淇濇磥鏀剁撼璁板綍鏁版嵁"); + } + /** + * 瀵煎嚭淇濇磥鏀剁撼璁板綍鍒楄〃 + */ +// @PreAuthorize("@ss.hasPermi('system:property:export')") + @Log(title = "淇濇磥鏀剁撼璁板綍", businessType = BusinessType.EXPORT) + @PostMapping("/export1/{ids}") public void export(HttpServletResponse response, @PathVariable Long[] ids) { List<ZfClean> list = zfCleanService.selectByIds(ids); -- Gitblit v1.9.1