fix:修复

dev_unify
chenhc 4 months ago
parent 335a4b3432
commit 860ce44e4d

@ -123,7 +123,7 @@ public class AlihealthUtils {
AlihealthThirdAliDrugInsertReqeust tempRequest = new AlihealthThirdAliDrugInsertReqeust();
BeanUtils.copyProperties(request, tempRequest);
tempRequest.getAlihealthKytDrugrescodeReqeust().setPhysic_name(convertedName);
tryInsertAndCollect(tempRequest, resultList);
BaseResponse<List<ThirdAliDrug>> listBaseResponse = tryInsertAndCollect(tempRequest, resultList);
}
// 处理罗马数字转换
@ -133,7 +133,7 @@ public class AlihealthUtils {
AlihealthThirdAliDrugInsertReqeust tempRequest = new AlihealthThirdAliDrugInsertReqeust();
BeanUtils.copyProperties(request, tempRequest);
tempRequest.getAlihealthKytDrugrescodeReqeust().setPhysic_name(convertedName);
tryInsertAndCollect(tempRequest, resultList);
BaseResponse<List<ThirdAliDrug>> listBaseResponse = tryInsertAndCollect(tempRequest, resultList);
}
// 设置结果
@ -203,8 +203,9 @@ public class AlihealthUtils {
&& org.apache.commons.lang3.StringUtils.isNotEmpty(alihealthThirdAliDrugInsertReqeust.getAppSecret())
) {
try {
Map map = alihealthUtils.disposeSign(alihealthKytDrugrescodeReqeust, alihealthThirdAliDrugInsertReqeust.getAppSecret());
AlihealthKytDrugrescodeReqeust alihealthKytDrugrescodeReqeust2 = new AlihealthKytDrugrescodeReqeust();
BeanUtils.copyProperties(alihealthKytDrugrescodeReqeust,alihealthKytDrugrescodeReqeust2);
Map map = alihealthUtils.disposeSign(alihealthKytDrugrescodeReqeust2, alihealthThirdAliDrugInsertReqeust.getAppSecret());
String json = HttpUtil.get(alihealthUrl, map);
log.error("阿里健康接口调用成功===" + json);
alihealthKytDrugrescodeResponse = new AlihealthKytDrugrescodeResponse(json);
@ -293,7 +294,7 @@ public class AlihealthUtils {
Map<String, Object> map = BeanUtil.beanToMap(alihealthKytCommonParametersReqeust);
String sign;
try {
sign = new AlihealthUtils().signTopRequest(map, secret, "md5");
sign = this.signTopRequest(map, secret, "md5");
log.info("sign====" + sign);
alihealthKytCommonParametersReqeust.setSign(sign);
} catch (IOException e) {

Loading…
Cancel
Save