java110
2021-06-29 c8195a8a1c34b9fa8db9aa4dc340d4344044ce97
service-report/src/main/java/com/java110/report/dao/impl/ReportCommunityServiceDaoImpl.java
@@ -75,10 +75,10 @@
    }
    @Override
    public List<CommunityDto> getCommunitys(CommunityDto communityDto) {
    public List<Map> getCommunitys(Map communityDto) {
        logger.debug("查询getCommunitys信息 入参 info : {}", JSONObject.toJSONString(communityDto));
        List<CommunityDto> communityDtos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.getCommunitys", communityDto);
        List<Map> communityDtos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.getCommunitys", communityDto);
        return communityDtos;
    }