|
|
@ -273,7 +273,7 @@ public interface CustomerAgencyDao extends BaseDao<CustomerAgencyEntity> { |
|
|
|
* @author zxc |
|
|
|
* @date 2021/10/25 9:59 上午 |
|
|
|
*/ |
|
|
|
void addMapArea(@Param("orgId") String orgId, @Param("level") String level, @Param("coordinates") String coordinates); |
|
|
|
void addMapArea(@Param("orgId") String orgId, @Param("level") String level, @Param("coordinates") String coordinates, @Param("latitude") String latitude, @Param("longitude") String longitude); |
|
|
|
|
|
|
|
/** |
|
|
|
* @param pid |
|
|
@ -296,35 +296,39 @@ public interface CustomerAgencyDao extends BaseDao<CustomerAgencyEntity> { |
|
|
|
|
|
|
|
/** |
|
|
|
* desc:获取组织和网格的数据 树形sql |
|
|
|
* |
|
|
|
* @param agencyId |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
ExtStaffPermissionResultDTO selectAgencyAndGridById(@Param("agencyId") String agencyId); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 【事件】社区服务热线 |
|
|
|
* @author sun |
|
|
|
**/ |
|
|
|
OrgMobileResultDTO getAgencyMobile(@Param("gridId") String gridId); |
|
|
|
|
|
|
|
int updateSubAgencyAreaCodeById(@Param("customerId")String customerId, @Param("agencyId")String agencyId, @Param("operateUserId") String operateUserId); |
|
|
|
int updateSubAgencyAreaCodeById(@Param("customerId") String customerId, @Param("agencyId") String agencyId, @Param("operateUserId") String operateUserId); |
|
|
|
|
|
|
|
/** |
|
|
|
* Desc: 查询组织下的社区 |
|
|
|
* |
|
|
|
* @param customerId |
|
|
|
* @param agencyId |
|
|
|
* @author zxc |
|
|
|
* @date 2022/3/21 15:23 |
|
|
|
*/ |
|
|
|
List<CommunityListResultDTO> getCommunityList(@Param("customerId")String customerId, @Param("agencyId")String agencyId); |
|
|
|
List<CommunityListResultDTO> getCommunityList(@Param("customerId") String customerId, @Param("agencyId") String agencyId); |
|
|
|
|
|
|
|
List<SubOrgResDTO> selectSubOrg(String agencyId); |
|
|
|
|
|
|
|
/** |
|
|
|
* @describe: 通过用户所属的行政组织和行政类型,查询下级的组织树 |
|
|
|
* @author wangtong |
|
|
|
* @date 2022/5/18 17:23 |
|
|
|
* @params [formDto] |
|
|
|
* @return java.util.List<com.epmet.dto.result.PartyOrgTreeResultDTO> |
|
|
|
*/ |
|
|
|
* @return java.util.List<com.epmet.dto.result.PartyOrgTreeResultDTO> |
|
|
|
* @describe: 通过用户所属的行政组织和行政类型,查询下级的组织树 |
|
|
|
* @author wangtong |
|
|
|
* @date 2022/5/18 17:23 |
|
|
|
* @params [formDto] |
|
|
|
*/ |
|
|
|
List<PartyOrgTreeResultDTO> getOrgTreeByUserAndType(OrgTreeByUserAndTypeFormDTO formDto); |
|
|
|
} |
|
|
|
|
|
|
|