From 01636c412d415f627c9bb684e10b343163601f5a Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Fri, 20 Sep 2024 18:27:57 +0800 Subject: [PATCH] feat: ct --- src/main/java/com/glxp/mipsdl/client/ctqyy/CtqyyClient.java | 6 +++--- .../mybatis/mapper/other/ctqyy/VYpzsPresInfoMapper.xml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/glxp/mipsdl/client/ctqyy/CtqyyClient.java b/src/main/java/com/glxp/mipsdl/client/ctqyy/CtqyyClient.java index 5ecc117..b6ffca9 100644 --- a/src/main/java/com/glxp/mipsdl/client/ctqyy/CtqyyClient.java +++ b/src/main/java/com/glxp/mipsdl/client/ctqyy/CtqyyClient.java @@ -1653,16 +1653,16 @@ public class CtqyyClient extends CommonHttpClient { List presInfoEntities = page.getRecords(); List vInsurNationGoodsPhysics = new ArrayList<>(); if (CollUtil.isNotEmpty(presInfoEntities)) { - List collect = presInfoEntities.stream().map(VYpzsPresInfo::getPHYSIC_CODE).collect(Collectors.toList()); + List collect = presInfoEntities.stream().map(VYpzsPresInfo::getPRESCRIBE_NUMBER).collect(Collectors.toList()); LambdaQueryWrapper wrapper1 = new LambdaQueryWrapper<>(); - wrapper1.in(VYpzsPresInfo::getPHYSIC_CODE, collect); + wrapper1.in(VYpzsPresInfo::getPRESCRIBE_NUMBER, collect); vInsurNationGoodsPhysics = vYpzsPresInfoMapper.selectList(wrapper1); } // TODO: 2024/9/19 这边在转换的时候就不能用VInsurNationGoodsPhysic if (CollUtil.isNotEmpty(vInsurNationGoodsPhysics)) { Map> groupedByPrescribeNumber = vInsurNationGoodsPhysics.stream() - .collect(Collectors.groupingBy(VYpzsPresInfo::getPHYSIC_CODE)); + .collect(Collectors.groupingBy(VYpzsPresInfo::getPRESCRIBE_NUMBER)); List ioCollectOrders = new ArrayList<>(); groupedByPrescribeNumber.forEach((key, value) -> { VYpzsPresInfo presInfoEntity = value.get(0); diff --git a/src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPresInfoMapper.xml b/src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPresInfoMapper.xml index ffb456b..7caae64 100644 --- a/src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPresInfoMapper.xml +++ b/src/main/resources/mybatis/mapper/other/ctqyy/VYpzsPresInfoMapper.xml @@ -31,7 +31,7 @@