|
|
@@ -2,6 +2,7 @@ package com.dk.oauth.feign.service;
|
|
|
|
|
|
import com.dk.common.infrastructure.constant.Constant;
|
|
|
import com.dk.common.model.response.mst.StaffResponse;
|
|
|
+import com.dk.common.model.vo.mst.StaffVO;
|
|
|
import com.dk.common.response.ResponseResultVO;
|
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
@@ -14,7 +15,7 @@ import java.util.Map;
|
|
|
* @desc : MdmServerFeign
|
|
|
* @date : 2024-038-10 10:56
|
|
|
*/
|
|
|
-@FeignClient(name = Constant.MDM_PREFIX + Constant.SERVER + "-dkic-b1-jyh", path = Constant.MST_STAFF,contextId = "staff")
|
|
|
+@FeignClient(name = Constant.MDM_PREFIX + Constant.SERVER + "-dkic-b1", path = Constant.MST_STAFF,contextId = "staff")
|
|
|
public interface StaffFeign {
|
|
|
/**
|
|
|
* @desc : 体验产品
|
|
|
@@ -29,6 +30,6 @@ public interface StaffFeign {
|
|
|
* @author : 姜永辉
|
|
|
* @date : 2023-11-02 16:27
|
|
|
*/
|
|
|
- @PostMapping({"/feign_insert_staff"})
|
|
|
- ResponseResultVO<StaffResponse> insertFeignStaff(@RequestBody Map<String, Object> collectQuery) ;
|
|
|
+ @PostMapping({"/insert_feign_staff"})
|
|
|
+ ResponseResultVO<StaffResponse> insertFeignStaff(@RequestBody StaffVO staffVO) ;
|
|
|
}
|