From b255f2a8bb78bb5197c8b839853682203c8a1ddc Mon Sep 17 00:00:00 2001
From: zqy <2522236926@qq.com>
Date: 星期一, 23 九月 2024 22:20:10 +0800
Subject: [PATCH] 修改导入判断
---
ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfEventShareController.java | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfEventShareController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfEventShareController.java
index 2b501b8..4d0bd76 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfEventShareController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/zhang/ZfEventShareController.java
@@ -6,6 +6,7 @@
import com.ruoyi.common.utils.ServletUtils;
import com.ruoyi.domain.ShareMore;
import com.ruoyi.domain.ZfDownload;
+import com.ruoyi.service.ZIdeaShareService;
import com.ruoyi.service.ZfEventDownloadService;
import com.ruoyi.service.ZfEventShareService;
import org.springframework.web.bind.annotation.*;
@@ -24,6 +25,19 @@
@Resource
ZfEventDownloadService zfEventDownloadService;
+
+
+ @Resource
+ ZIdeaShareService zIdeaShareService;
+ @GetMapping("/shareUser/{userId}/{menuId}")
+ public AjaxResult selectUserShareInfo(@PathVariable Integer userId, @PathVariable Long menuId){
+ return zIdeaShareService.selectShareUserInfo(userId, menuId);
+ }
+ /**
+ *
+ * @param zfDoctor
+ * @return
+ */
@PostMapping("/share")
public AjaxResult share(@RequestBody ShareMore zfDoctor){
zfDoctor.setSysMenuId(2013L);
--
Gitblit v1.9.1