From 3b882c3be44b2eede09999d8b65d2630ce818a81 Mon Sep 17 00:00:00 2001
From: liyj <1003249715@qq.com>
Date: Sat, 31 Aug 2024 18:12:12 +0800
Subject: [PATCH] 1、附件管理模块修改3
---
dyh-service/dyh-sys/src/main/java/cn/huge/module/client/api/CustClient.java | 43 +++++++------------------------------------
1 files changed, 7 insertions(+), 36 deletions(-)
diff --git a/dyh-service/dyh-sys/src/main/java/cn/huge/module/client/api/CustClient.java b/dyh-service/dyh-sys/src/main/java/cn/huge/module/client/api/CustClient.java
index 4bc8525..ce78221 100644
--- a/dyh-service/dyh-sys/src/main/java/cn/huge/module/client/api/CustClient.java
+++ b/dyh-service/dyh-sys/src/main/java/cn/huge/module/client/api/CustClient.java
@@ -18,57 +18,28 @@
/**
* 内部用户-获取登录用户
- * @url {ctx}/api/v1/ctUser/clientGetUser?userId=
+ * @url {ctx}/api/client/ctUser/clientGetUser?userId=
* @param userId 登录用户编号
* @return ReturnBO
*/
- @GetMapping("/api/v1/ctUser/clientGetUser")
+ @GetMapping("/api/client/ctUser/clientGetUser")
ReturnBO clientGetUser(@RequestParam("userId") String userId);
/**
* 内部用户-获取登录用户
- * @url {ctx}/api/v1/ctUser/clientGetUserAll?userId=
+ * @url {ctx}/api/client/ctUser/clientGetUserAll?userId=
* @param userId 登录用户编号
* @return
*/
- @GetMapping("/api/v1/ctUser/clientGetUserAll")
+ @GetMapping("/api/client/ctUser/clientGetUserAll")
ReturnBO clientGetUserAll(@RequestParam("userId") String userId);
/**
* 当事人-获取登录用户
- * @url {ctx}/api/v1/paUser/clientGetUserAll?userId=
+ * @url {ctx}/api/client/paUser/clientGetUserAll?userId=
* @param userId 登录用户编号
* @return ReturnBO
*/
- @GetMapping("/api/v1/paUser/clientGetUserAll")
- ReturnBO paclientGetUser(@RequestParam("userId") String userId);
-
- /**
- * 根据组织和角色查询
- * @url {ctx}/api/v1/ctUser/listUserByUnitRole
- * @return unitId 组织编号
- * @return roleCode 角色代码
- * @return ReturnBO
- */
- @GetMapping("/api/v1/ctUser/listUserByUnitRole")
- ReturnBO listUserByUnitRole(@RequestParam(value = "unitId") String unitId, @RequestParam(value = "roleCode") String roleCode);
-
- /**
- * 根据部门和角色查询
- * @url {ctx}/api/v1/ctUser/listUserByDeptRole
- * @return deptId 部门编号
- * @return roleCode 角色代码
- * @return ReturnBO
- */
- @GetMapping("/api/v1/ctUser/listUserByDeptRole")
- ReturnBO listUserByDeptRole(@RequestParam(value = "deptId") String deptId, @RequestParam(value = "roleCode") String roleCode);
-
- /**
- * 查询客户下的法院
- * @url {ctx}/api/v1/ctUnit/listCourt1
- * @param userId 用户编号
- * @return ReturnBO
- */
- @GetMapping("/api/v1/ctUnit/listCourt1")
- ReturnBO listCourt1(@RequestParam(value = "userId") String userId);
+ @GetMapping("/api/client/paUser/clientGetUserAll")
+ ReturnBO paClientGetUserAll(@RequestParam("userId") String userId);
}
--
Gitblit v1.8.0