| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.dtos.community.ExportRealCompanyExcelDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComMngRealCompanyBelongsDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComMngRealCompanyDTO; |
| | | import com.panzhihua.common.model.vos.community.ComMngRealCompanyExcelVO; |
| | | import com.panzhihua.common.model.vos.community.ComMngRealCompanyVO; |
| | | import com.panzhihua.common.model.vos.community.*; |
| | | import com.panzhihua.service_community.model.dos.ComMngRealCompanyDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | " t.address, " + |
| | | " t.create_at AS createAt " + |
| | | "FROM " + |
| | | " com_mng_real_company t " + |
| | | " com_mng_real_company t where 1=1" + |
| | | "<if test='pageComMngRealCompanyDTO.legalPerson != null and pageComMngRealCompanyDTO.legalPerson.trim() != ""'>" + |
| | | " and t.legal_person LIKE concat( #{pageComMngRealCompanyDTO.legalPerson}, '%' ) " + |
| | | " </if> " + |
| | | "<if test='pageComMngRealCompanyDTO.comName != null and pageComMngRealCompanyDTO.comName.trim() != ""'>" + |
| | | " and t.com_name LIKE concat( #{pageComMngCarDTO.comName}, '%' ) " + |
| | | " and t.com_name LIKE concat( '%',#{pageComMngRealCompanyDTO.comName}, '%' ) " + |
| | | " </if> " + |
| | | "<if test='pageComMngRealCompanyDTO.communityId != null and pageComMngRealCompanyDTO.communityId != 0'>" + |
| | | " and t.community_id = #{pageComMngRealCompanyDTO.communityId} " + |
| | | " </if> " + |
| | | "<if test='pageComMngRealCompanyDTO.legalPerson != null and pageComMngRealCompanyDTO.legalPerson.trim() != ""'>" + |
| | | " and t.legal_person LIKE concat( #{pageComMngCarDTO.legalPerson}, '%' ) " + |
| | | " </if> " + |
| | | " order by t.create_at desc"+ |
| | | " order by t.create_at desc" + |
| | | "</script>") |
| | | IPage<ComMngRealCompanyVO> pageQueryComMngRealCompany(Page page, @Param(value = "pageComMngRealCompanyDTO") PageComMngRealCompanyDTO pageComMngRealCompanyDTO); |
| | | |
| | |
| | | "<if test='exportRealCompanyExcelDTO.legalPerson != null and exportRealCompanyExcelDTO.legalPerson.trim() != ""'>" + |
| | | " and t.legal_person LIKE concat( #{exportRealCompanyExcelDTO.legalPerson}, '%' ) " + |
| | | " </if> " + |
| | | " order by t.create_at desc"+ |
| | | " order by t.create_at desc" + |
| | | "</script>") |
| | | List<ComMngRealCompanyExcelVO> exportRealCompanyExcel(@Param(value = "exportRealCompanyExcelDTO") ExportRealCompanyExcelDTO exportRealCompanyExcelDTO); |
| | | |
| | | @Select("<script> " + |
| | | " SELECT distinct " + |
| | | " act.province_code AS provinceAdcode, " + |
| | | " act.city_code AS cityAdcode, " + |
| | | " act.area_code AS districtAdcode, " + |
| | | " pr.province_name AS provinceName, " + |
| | | " cty.city_name AS cityName, " + |
| | | " dis.district_name AS districtName, " + |
| | | " street.name AS streetName, " + |
| | | " act.name AS communityName, " + |
| | | " street.street_id AS streetId, " + |
| | | " act.community_id AS communityId, " + |
| | | " act.create_at AS creatAt " + |
| | | " FROM " + |
| | | " com_act act " + |
| | | " LEFT JOIN com_street street ON act.street_id = street.street_id " + |
| | | " LEFT join com_mng_struct_area_province pr on street.province_code = pr.province_adcode " + |
| | | " LEFT join com_mng_struct_area_city cty on street.city_code = cty.city_adcode " + |
| | | " LEFT join com_mng_struct_area_district dis on street.area_code = dis.district_adcode " + |
| | | " WHERE 1=1 " + |
| | | "<if test='pageComMngRealCompanyBelongsDTO.actName != null and pageComMngRealCompanyBelongsDTO.actName.trim() != ""'>" + |
| | | " and act.name = #{pageComMngRealCompanyBelongsDTO.actName} " + |
| | | " </if> " + |
| | | " order by act.create_at desc " + |
| | | " limit 1 " + |
| | | "</script>") |
| | | ComMngRealCompanyBelongsVO queryComMngRealCompanyBelongs(@Param(value = "pageComMngRealCompanyBelongsDTO") ComMngRealCompanyBelongsDTO comMngRealCompanyBelongsDTO); |
| | | |
| | | @Select("select count(id) as companyTotal from com_mng_real_company where community_id = #{communityId}") |
| | | ComMngRealCompanyTotalVO getComMngRealCompanyTotalByAdmin(@Param("communityId") Long communityId); |
| | | } |