From b02beccf4567068cb47a3f1181a00039456c872d Mon Sep 17 00:00:00 2001
From: zqy <2522236926@qq.com>
Date: 星期三, 06 八月 2025 15:37:20 +0800
Subject: [PATCH] 用户修改姓名和电话同步修改uaid
---
ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfPropertyController.java | 33 +++++++++++++++++++--------------
1 files changed, 19 insertions(+), 14 deletions(-)
diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfPropertyController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfPropertyController.java
index 4dceeef..1da60dc 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfPropertyController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfPropertyController.java
@@ -45,6 +45,11 @@
return zfPropertyService.selectDataList(zfProperty, pageNum, pageSize);
}
+ @GetMapping("/type")
+ public AjaxResult listType(){
+ return zfPropertyService.selectType();
+ }
+
/**
* 鑾峰彇瀵煎叆妯℃澘
*/
@@ -55,24 +60,24 @@
util.exportExcel(response,list,"瀹跺涵璧勪骇瀵煎叆妯℃澘");
}
-// /**
-// * 瀵煎嚭瀹跺涵璧勪骇璁板綍鍒楄〃
-// */
-//// @PreAuthorize("@ss.hasPermi('system:property:export')")
-// @Log(title = "瀹跺涵璧勪骇璁板綍", businessType = BusinessType.EXPORT)
-// @PostMapping("/export")
-// public void export(HttpServletResponse response,ZfProperty zfProperty)
-// {
-// List<ZfProperty> list = zfPropertyService.selectByCondition(zfProperty);
-// log.info("瀵煎嚭璁板綍涓�:{}",list);
-// ExcelUtil<ZfProperty> util = new ExcelUtil<>(ZfProperty.class);
-// util.exportExcel(response, list, "瀹跺涵璧勪骇璁板綍鏁版嵁");
-// }
+ /**
+ * 瀵煎嚭瀹跺涵璧勪骇璁板綍鍒楄〃
+ */
+// @PreAuthorize("@ss.hasPermi('system:property:export')")
+ @Log(title = "瀹跺涵璧勪骇璁板綍", businessType = BusinessType.EXPORT)
+ @PostMapping("/export")
+ public void export(HttpServletResponse response,ZfProperty zfProperty)
+ {
+ List<ZfProperty> list = zfPropertyService.selectByCondition(zfProperty);
+ log.info("瀵煎嚭璁板綍涓�:{}",list);
+ ExcelUtil<ZfProperty> util = new ExcelUtil<>(ZfProperty.class);
+ util.exportExcel(response, list, "瀹跺涵璧勪骇璁板綍鏁版嵁");
+ }
/**
* 瀵煎嚭瀹跺涵璧勪骇璁板綍鍒楄〃
*/
@Log(title = "瀹跺涵澶т簨浠惰褰�", businessType = BusinessType.EXPORT)
- @PostMapping("/export/{ids}")
+ @PostMapping("/export1/{ids}")
public void export1(HttpServletResponse response, @PathVariable Long[] ids) {
List<ZfProperty> list = zfPropertyService.selectByIds(ids);
log.info("瀵煎嚭璁板綍涓�:{}", list);
--
Gitblit v1.9.1