From 981634fa893b787f2991d99ebf60276eee8d28c7 Mon Sep 17 00:00:00 2001 From: liyj <1003249715@qq.com> Date: Sat, 24 Aug 2024 19:01:44 +0800 Subject: [PATCH] 1、新增disp、mediate、sys服务 2、集成工作流流程设计器 --- dyh-service/dyh-cust/src/main/java/cn/huge/module/ctuser/controller/web/CtPostWebController.java | 38 ++++++++++++++++++++++++++++++++------ 1 files changed, 32 insertions(+), 6 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 b283aa8..ef91c8e 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,9 +1,13 @@ -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; +import cn.huge.base.config.CurrentUser; import cn.huge.module.ctuser.domain.po.CtPost; +import cn.huge.module.ctuser.domain.po.CtUser; import cn.huge.module.ctuser.service.CtPostService; +import cn.huge.module.ctuser.service.CtUserService; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.google.common.collect.Maps; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.StringUtils; @@ -14,13 +18,12 @@ import org.springframework.web.bind.annotation.*; 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 @@ -36,6 +39,9 @@ @Autowired private CtPostService service; + + @Autowired + private CtUserService ctUserService; /** * 获取请求URL参数 @@ -143,7 +149,7 @@ /** * 根据主键单个 * @url {ctx}/api/web/ctPost/deleteById - * @param ids 主键编号 + * @param id 主键编号 * @return Object */ @GetMapping("/deleteById") @@ -172,4 +178,24 @@ } } + /** + * 根据单位编号查询所有岗位 + * @url {ctx}/api/v1/ctPost/getByUnitId + * @param userId 登录用户编号 + * @return Object + * @throws Exception + */ + @GetMapping("/getByUnitId") + public Object getByUnitId(@CurrentUser String userId) { + try { + // 获取当前登录用户 + CtUser ctUser = ctUserService.getById(userId); + QueryWrapper<CtPost> ctPostQueryWrapper = new QueryWrapper<>(); + ctPostQueryWrapper.eq("unit_id", ctUser.getUnitId()); + List<CtPost> ctPostList = service.list(ctPostQueryWrapper); + return ReturnSucUtils.getRepInfo(ctPostList); + } catch (Exception e) { + return ReturnFailUtils.getRepInfo(); + } + } } -- Gitblit v1.8.0