From 0b597ea4500b3463ac9f0983dbabaca52417226c Mon Sep 17 00:00:00 2001 From: liyj <1003249715@qq.com> Date: Sat, 14 Sep 2024 12:21:37 +0800 Subject: [PATCH] 回退上报流程bug修复2 --- 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