From 89e716d623a2b773591ba020acb8c5affc1db9cc Mon Sep 17 00:00:00 2001
From: liyj <1003249715@qq.com>
Date: Thu, 12 Sep 2024 10:18:56 +0800
Subject: [PATCH] 1、查询上级综治中心组织
---
dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/controller/web/CtPostWebController.java | 12 +++++-------
1 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/controller/web/CtPostWebController.java b/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/controller/web/CtPostWebController.java
index fc1f1c1..72b2120 100644
--- a/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/controller/web/CtPostWebController.java
+++ b/dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/controller/web/CtPostWebController.java
@@ -1,4 +1,4 @@
-package cn.huge.module.ctuser.controller;
+package cn.huge.module.ctuser.controller.web;
import cn.huge.base.common.utils.ReturnFailUtils;
import cn.huge.base.common.utils.ReturnSucUtils;
@@ -20,12 +20,10 @@
import javax.servlet.http.HttpServletRequest;
import java.util.List;
import java.util.Map;
-import java.util.stream.Collectors;
-import java.util.stream.Stream;
/**
- * @title: 客户岗位表接口api
- * @description: 客户岗位表接口api
+ * @title: 客户岗位表接口api-web端
+ * @description: 客户岗位表接口api-web端
* @company: hugeinfo
* @author: liyj
* @time: 2024-08-19 20:04:19
@@ -71,7 +69,7 @@
if (StringUtils.isNotBlank(unitId)){
terms.put("unitId", unitId);
}
- // 删除状态,0:已删除,1:未删除
+ // 删除状态,0:未删除,1:已删除
String deleteStatus = request.getParameter("deleteStatus");
if (StringUtils.isNotBlank(deleteStatus)){
terms.put("deleteStatus", deleteStatus);
@@ -182,7 +180,7 @@
/**
* 根据单位编号查询所有岗位
- * @url {ctx}/api/v1/ctPost/getByUnitId
+ * @url {ctx}/api/web/ctPost/getByUnitId
* @param userId 登录用户编号
* @return Object
* @throws Exception
--
Gitblit v1.8.0