ソースを参照

注册商户时候插入部门

姜永辉 2 年 前
コミット
920efcae6b
1 ファイル変更2 行追加2 行削除
  1. 2 2
      src/main/java/com/dk/oauth/feign/service/OrgFeign.java

+ 2 - 2
src/main/java/com/dk/oauth/feign/service/OrgFeign.java

@@ -13,13 +13,13 @@ import org.springframework.web.bind.annotation.RequestBody;
  * @desc : MdmServerFeign
  * @date : 2024-038-10 10:56
  */
-@FeignClient(name = Constant.MDM_PREFIX + Constant.SERVER + "-dkic-b1" + "-jyh", path = Constant.MST_ORG, contextId = "org")
+@FeignClient(name = Constant.MDM_PREFIX + Constant.SERVER + "-dkic-b1" , path = Constant.MST_ORG, contextId = "org")
 public interface OrgFeign {
     /**
      * @desc : 注册商户时候插入部门--顶级
      * @author : 姜永辉
      * @date : 2023-11-02 16:27
      */
-    @PostMapping({"//" + Constant.MDM_PREFIX + Constant.SERVER + "-$CLUSTER_ID" + "-jyh" + Constant.MST_ORG + "/insert_feign_org"})
+    @PostMapping({"//" + Constant.MDM_PREFIX + Constant.SERVER + "-$CLUSTER_ID"  + Constant.MST_ORG + "/insert_feign_org"})
     ResponseResultVO<OrgResponse> insertFeignOrg(@RequestBody OrgVO orgVO);
 }