From 0a4aee700a60c4b28248f3d1a7f4f91376b68492 Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期一, 01 八月 2022 14:46:47 +0800 Subject: [PATCH] Merge branch 'haucheng_panzhihua' into shuangzheng2 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngStructAreaDistrictServiceImpl.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngStructAreaDistrictServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngStructAreaDistrictServiceImpl.java index 90f9096..16d33d7 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngStructAreaDistrictServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngStructAreaDistrictServiceImpl.java @@ -40,16 +40,16 @@ public R listAreaDistrict(Long cityAdcode) { List<ComMngStructAreaProvinceVO> comMngStructAreaProvinceVOS = new ArrayList<>(); ComMngStructAreaProvinceVO comMngStructAreaProvinceVO = new ComMngStructAreaProvinceVO(); - comMngStructAreaProvinceVO.setId(23); + comMngStructAreaProvinceVO.setId(23L); comMngStructAreaProvinceVO.setProvinceAdcode(510000); comMngStructAreaProvinceVO.setProvinceName("四川省"); List<ComMngStructAreaCityVO> comMngStructAreaCityVOS = new ArrayList<>(); ComMngStructAreaCityVO comMngStructAreaCityVO = new ComMngStructAreaCityVO(); comMngStructAreaCityVO.setCityAdcode(510400); comMngStructAreaCityVO.setCityName("攀枝花市"); - comMngStructAreaCityVO.setId(256); + comMngStructAreaCityVO.setId(256L); comMngStructAreaCityVO.setProvinceAdcode(510000); - comMngStructAreaCityVO.setProvinceId(23); + comMngStructAreaCityVO.setProvinceId(23L); List<ComMngStructAreaDistrictDO> comMngStructAreaDistrictDOS = comMngStructAreaDistrictDAO.selectList(new QueryWrapper<ComMngStructAreaDistrictDO>().lambda() .eq(ComMngStructAreaDistrictDO::getCityAdcode, cityAdcode)); -- Gitblit v1.7.1