From 1f47d88a012ca5ed1e2df49740f6693dfd753d4d Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Thu, 16 Mar 2023 11:58:27 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B5=84=E8=B4=A8=E5=AE=A1=E6=A0=B8=20?= =?UTF-8?q?=E8=A7=92=E8=89=B2=E5=9B=9E=E6=98=BE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/controller/purchase/SupCompanyController.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/com/glxp/api/controller/purchase/SupCompanyController.java b/src/main/java/com/glxp/api/controller/purchase/SupCompanyController.java index 10ed9b7a..6890a5dc 100644 --- a/src/main/java/com/glxp/api/controller/purchase/SupCompanyController.java +++ b/src/main/java/com/glxp/api/controller/purchase/SupCompanyController.java @@ -343,6 +343,14 @@ public class SupCompanyController { } } + @AuthRuleAnnotation("") + @GetMapping("api/pur/supCompany/getRoId") + public BaseResponse getRoId( String companyId) { + CustomerInfoEntity customerInfoEntity = customerInfoService.selectById(companyId); + + return ResultVOUtils.success(customerInfoEntity); + } + public String getCustomerId() { ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();