xiejun
2024-01-25 e581891072a36f0d0f7f57246366ded965e2ab8a
Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/feign/MdmSearchItemCodeProvider.java
@@ -5,8 +5,10 @@
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
import javax.validation.constraints.NotNull;
import java.util.Map;
/****
 * 从外部获取型号代号,或者项目代号
@@ -20,9 +22,9 @@
   /***
    * 查询项目代号或者型号代号
    * @param searchItemParam
    * @param searchDataMap
    * @return 执行结果
    */
   @PostMapping("/api/pp/pp/ext/extend/v1.0/getppModelByElem")
   SearchItemVO getppModelByElem(@NotNull @RequestBody SearchItemParam searchItemParam);
   SearchItemVO getppModelByElem(@RequestParam Map<String,String> searchDataMap);
}