| | |
| | | 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; |
| | | |
| | | /**** |
| | | * 从外部获取型号代号,或者项目代号 |
| | |
| | | |
| | | /*** |
| | | * 查询项目代号或者型号代号 |
| | | * @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); |
| | | } |