package com.panzhihua.service_community.dao; import java.util.List; import com.panzhihua.common.model.dtos.community.building.BuildingDto; import com.panzhihua.common.model.dtos.community.large.AreaStreetDetailResp; import com.panzhihua.common.model.dtos.community.large.SumAreaStreetResp; import com.panzhihua.common.model.dtos.partybuilding.QryReportResp; import com.panzhihua.common.model.vos.area.StreetAndBuildVO; import com.panzhihua.common.model.vos.community.ComActPasswordVo; import com.panzhihua.common.model.vos.community.bigscreen.ScreenStatics; import com.panzhihua.common.model.vos.community.screen.event.EventPopulationSpecialStatisticsVO; import com.panzhihua.common.model.vos.neighbor.UnitActivityAnalysisVO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import org.apache.ibatis.annotations.Update; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.panzhihua.common.model.dtos.community.PageComActDTO; import com.panzhihua.common.model.dtos.community.switchs.SearchCommunityDTO; import com.panzhihua.common.model.vos.community.ComActVO; import com.panzhihua.common.model.vos.community.ComPopulationActVO; import com.panzhihua.common.model.vos.community.switchs.CommunitySwitchAllAppletsVO; import com.panzhihua.common.model.vos.community.switchs.StreetAllAppletsVO; import com.panzhihua.common.model.vos.grid.EventGridCommunityAdminVO; import com.panzhihua.service_community.model.dos.ComActDO; /** * @program: springcloud_k8s_panzhihuazhihuishequ * @description: 社区 * @author: huang.hongfa weixin hhf9596 qq 959656820 * @create: 2020-12-07 14:13 **/ @Mapper public interface ComActDAO extends BaseMapper { // @Select("") @Select("") List listCommunity(ComActVO comActVO); @Select("select district_name from com_mng_struct_area_district where district_adcode=#{areaCode}") String selectAreaName(String areaCode); @Select("") IPage pageCommunity(Page page, @Param("pageComActDTO") PageComActDTO pageComActDTO); @Update("update sys_user u set u.password=#{password} where u.account=#{account} and u.type=3 and u.community_id = ${communityId}") void updateAccountPassword(@Param("password") String password, @Param("account") String account, @Param("communityId") Long communityId); @Select("select community_id,`name`,lng,lat from com_act where state = 0 and app_id =#{appId}") List getCommunityLists(@Param("appId") String appId); @Select("select ca.`name`,cmsap.province_name,cmsac.city_name,cmsad.district_name,ca.street_id,ca.community_id,cs.`name` as streetName from com_act as ca \n" + "left join com_mng_struct_area_province as cmsap on cmsap.province_adcode = ca.province_code\n" + "left join com_mng_struct_area_city as cmsac on cmsac.city_adcode = ca.city_code\n" + "left join com_mng_struct_area_district as cmsad on cmsad.district_adcode = ca.area_code\n" + "left join com_street as cs on cs.street_id = ca.street_id\n" + "where ca.community_id = ${communityId}") ComPopulationActVO getPopulationActById(@Param("communityId") Long communityId); @Select("select `name`,street_id from com_street where app_id = #{appId}") List getStreetList(String appId); @Select("select ca.`name`,ca.street_id,ca.community_id,cs.`name` as streetName from com_act as ca left join com_street as cs on cs.street_id = ca.street_id where ca.state = 0 and ca.street_id = #{streetId}") List getCommunityListByStreetId(@Param("streetId") Long streetId); // @Select(" ") List getCommunityListByName(@Param("name") String name,@Param("appId") String appId); @Select("SELECT c.community_id, c.`name`, c.street_id, cs.`name` as streetName," + "round( ST_Distance_Sphere ( Point ( #{communityDTO.longitude}, #{communityDTO.latitude} ), Point ( c.lng, c.lat ) )/ 1000, 2 ) AS distance " + "FROM com_act c left join com_street as cs on cs.street_id = c.street_id " + "where cs.area_code = #{communityDTO.areaCode} " + "HAVING distance >= 0 and distance <= #{communityDTO.distance} ORDER BY distance ASC") List getCommunityListByNearby(@Param("communityDTO") SearchCommunityDTO communityDTO); @Select("") List getWestCommunityLists(@Param("areaCode") String areCode); @Select("select account,plaintext_password as password from com_act where community_id = #{communityId}") ComActPasswordVo getCommunityPassword(@Param("communityId") Long communityId); @Select("select name from com_pb_check_unit where id=#{id}") String getUnitName(@Param("id") Long unitId); @Select("select count(id) from com_pb_check_unit") Integer getUnitCount(); @Select("select count(id) from com_pb_member where audit_result=1") Integer selectUnitCount(); @Select("select count(id) from com_pb_check_unit") Integer selectMemberCount(); @Select("select name from com_pb_check_unit where id=#{id}") String selectUnitName(@Param("id") Long id); @Select("select community_id from com_act where street_id=#{id}") List selectCommunityByStreetId(Long id); @Select("SELECT caa.community_id FROM com_act caa WHERE caa.`name` = ( select ca.`name` FROM com_act ca WHERE ca.community_id =#{id})") List selectIds(@Param("id") Long id); /** * 统计全部社区/村落数量 * @return */ @Select("SELECT count(1) FROM `com_act` WHERE app_id = 'wx118de8a734d269f0' and community_id not in ( 11 ,22)") Integer countCommunity(); /** * 统计实有人口数 * @return */ @Select(" SELECT count(1) FROM com_mng_population WHERE death = 0") Integer countPopulation(); /** * 统计实有房屋数 * @return */ @Select(" SELECT count(1) FROM com_mng_population_house") Integer countPopulationHouse(); /** * 统计报道在职干部 西区+花城 * @return */ @Select(" SELECT sum(a.member) FROM (SELECT count(1) member FROM com_pb_member union all SELECT count(1) member FROM com_pb_member_west) a") Integer countPbMember(); /** * 统计报到单位 * @return */ @Select(" SELECT count(1) FROM com_pb_check_unit") Integer countPbUnit(); /** * 统计商家 * @return */ @Select(" SELECT count(1) FROM com_convenient_merchants WHERE is_del = 0") Integer countMerchants(); /** * 统计自愿者 * @return */ @Select("SELECT count(1) FROM sys_user WHERE is_volunteer = 1") Integer countVolunteer(); /** * 统计社会组织 * @return */ @Select("SELECT count(1) FROM com_act_social_org") Integer countSocialOrg(); @Select("select * from com_act where area_code = #{areaCode}") List panzhihuaMap(@Param("areaCode")String areaCode); List oneTagThreeReal(@Param("streetId") Long streetId); ScreenStatics getScreenStatics(); EventPopulationSpecialStatisticsVO getPopulationSpecial(@Param("streetId") Long streetId); Integer getPopulationAge(@Param("streetId") Long streetId, @Param("age") Integer age); List institutionalUnitServiceAnalysis(@Param("beginTime") String beginTime, @Param("endTime") String endTIme); List institutionalUnitActivityAnalysis(@Param("beginTime") String beginTime, @Param("endTime") String endTIme); @Select("SELECT count(1) FROM com_pb_check_unit WHERE belong_to = #{belongTo}") Integer arriveUnit(@Param("belongTo") String belongTo); SumAreaStreetResp sumAreaStreet(); AreaStreetDetailResp selectVillage(@Param("ids") List ids,@Param("type") String type); EventPopulationSpecialStatisticsVO selectEvent(@Param("ids") List ids); List qryReport(String yearTime); }