|
@@ -138,6 +138,9 @@ public class YpCodgMatchService {
|
|
|
String str = String.join(",", unMatchCodgList);
|
|
|
ResultVo<Map<String, Object>> resultVo = taoBaoService.queryCodeDetail(str);
|
|
|
Map<String, Object> map = resultVo.getData();
|
|
|
+ if(null == map){
|
|
|
+ return ResultVoUtil.fail(ExceptionEnum.LOGICAL_ERROR, resultVo.getMessage());
|
|
|
+ }
|
|
|
List<AlibabaAlihealthDrugtraceTopYljgQueryCodedetailResponse.CodeFullInfoDto> codeFullInfoDto =
|
|
|
(List<AlibabaAlihealthDrugtraceTopYljgQueryCodedetailResponse.CodeFullInfoDto>) map.get("data");
|
|
|
|