From 1be9f9fdb13f7c5cdcf29494cb72ced35cd7af10 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期二, 16 七月 2024 22:18:04 +0800 Subject: [PATCH] 提交 --- server/web/src/main/java/com/doumee/api/web/CustomerManageApi.java | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/server/web/src/main/java/com/doumee/api/web/CustomerManageApi.java b/server/web/src/main/java/com/doumee/api/web/CustomerManageApi.java index 1e284a3..22c3422 100644 --- a/server/web/src/main/java/com/doumee/api/web/CustomerManageApi.java +++ b/server/web/src/main/java/com/doumee/api/web/CustomerManageApi.java @@ -1,5 +1,6 @@ package com.doumee.api.web; +import com.doumee.biz.zbom.ZbomCRMService; import com.doumee.biz.zbom.ZbomZhongTaiService; import com.doumee.core.annotation.trace.Trace; import com.doumee.core.model.ApiResponse; @@ -32,11 +33,19 @@ @Autowired public SmsEmailService smsEmailService; + @Autowired + public ZbomCRMService zbomCRMService; - @ApiOperation(value = "C绔皬绋嬪簭-鑾峰彇棣栭〉蹇楄瑁呬慨鍥涗釜妯″潡绫荤洰鏁版嵁", notes = "鑾峰彇棣栭〉蹇楄瑁呬慨鍥涗釜妯″潡绫荤洰鏁版嵁") + + @ApiOperation(value = "銆怌绔皬绋嬪簭銆戣幏鍙栭椤靛織璇磋淇洓涓ā鍧楃被鐩暟鎹�", notes = "鑾峰彇棣栭〉蹇楄瑁呬慨鍥涗釜妯″潡绫荤洰鏁版嵁锛岃儗鏅浘鏆傛椂鍐欐锛屽弬鑰僓I") @PostMapping("/getZSZXCatalogs") public ApiResponse<ZSZXCatalogResponse> getZSZXCatalogs() { return ApiResponse.success(zbomZhongTaiService.getZSZXCatalogs()); } + @ApiOperation(value = "銆愮灏忕▼搴忋�戣幏鍙栧鎴风鐞嗘巿鏉冭烦杞湴鍧�", notes = "鑾峰彇瀹㈡埛绠$悊鎺堟潈璺宠浆鍦板潃") + @PostMapping("/getCrmAuthUrl") + public ApiResponse<String> getCrmAuthUrl() { + return ApiResponse.success(zbomCRMService.getCrmGoUrl(this.getLoginUserInfo().getIamUsername())); + } } -- Gitblit v1.9.3