|
|
@ -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,10 +296,12 @@ public interface CustomerAgencyDao extends BaseDao<CustomerAgencyEntity> { |
|
|
|
|
|
|
|
/** |
|
|
|
* desc:获取组织和网格的数据 树形sql |
|
|
|
* |
|
|
|
* @param agencyId |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
ExtStaffPermissionResultDTO selectAgencyAndGridById(@Param("agencyId") String agencyId); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 【事件】社区服务热线 |
|
|
|
* @author sun |
|
|
@ -310,6 +312,7 @@ public interface CustomerAgencyDao extends BaseDao<CustomerAgencyEntity> { |
|
|
|
|
|
|
|
/** |
|
|
|
* Desc: 查询组织下的社区 |
|
|
|
* |
|
|
|
* @param customerId |
|
|
|
* @param agencyId |
|
|
|
* @author zxc |
|
|
@ -318,12 +321,13 @@ public interface CustomerAgencyDao extends BaseDao<CustomerAgencyEntity> { |
|
|
|
List<CommunityListResultDTO> getCommunityList(@Param("customerId") String customerId, @Param("agencyId") String agencyId); |
|
|
|
|
|
|
|
List<SubOrgResDTO> selectSubOrg(String agencyId); |
|
|
|
|
|
|
|
/** |
|
|
|
* @return java.util.List<com.epmet.dto.result.PartyOrgTreeResultDTO> |
|
|
|
* @describe: 通过用户所属的行政组织和行政类型,查询下级的组织树 |
|
|
|
* @author wangtong |
|
|
|
* @date 2022/5/18 17:23 |
|
|
|
* @params [formDto] |
|
|
|
* @return java.util.List<com.epmet.dto.result.PartyOrgTreeResultDTO> |
|
|
|
*/ |
|
|
|
List<PartyOrgTreeResultDTO> getOrgTreeByUserAndType(OrgTreeByUserAndTypeFormDTO formDto); |
|
|
|
} |
|
|
|