|
|
@ -33,8 +33,8 @@ import java.util.List; |
|
|
|
public interface ScreenCustomerAgencyDao { |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询客户根组织ID |
|
|
|
* @param customerId |
|
|
|
* @Description 查询客户根组织ID |
|
|
|
* @author zxc |
|
|
|
* @date 2020/8/18 2:44 下午 |
|
|
|
*/ |
|
|
@ -43,8 +43,8 @@ public interface ScreenCustomerAgencyDao { |
|
|
|
TreeResultDTO selectRootAgencyIdByBizType(@Param("customerId") String customerId, @Param("bizType") String bizType); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询下级机关的 名称和id |
|
|
|
* @param subAgencyPids |
|
|
|
* @Description 查询下级机关的 名称和id |
|
|
|
* @author zxc |
|
|
|
* @date 2020/8/18 4:48 下午 |
|
|
|
*/ |
|
|
@ -53,8 +53,8 @@ public interface ScreenCustomerAgencyDao { |
|
|
|
List<TreeResultDTO> selectSubAgencyListByBizType(@Param("subAgencyPids") String subAgencyPids); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询当前机关的区域信息 |
|
|
|
* @param agencyId |
|
|
|
* @Description 查询当前机关的区域信息 |
|
|
|
* @author zxc |
|
|
|
* @date 2020/8/18 4:51 下午 |
|
|
|
*/ |
|
|
@ -63,25 +63,26 @@ public interface ScreenCustomerAgencyDao { |
|
|
|
CompartmentResultDTO getAgencyAreaInfoByBizType(@Param("agencyId") String agencyId, @Param("bizType") String bizType); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询子级区域分布信息【机关级别】 |
|
|
|
* @param agencyId |
|
|
|
* @Description 查询子级区域分布信息【机关级别】 |
|
|
|
* @author zxc |
|
|
|
* @date 2020/8/18 5:12 下午 |
|
|
|
*/ |
|
|
|
List<AgencyDistributionResultDTO> selectSubDistribution(@Param("agencyId") String agencyId); |
|
|
|
|
|
|
|
List<AgencyDistributionResultDTO> selectSubDistributionByType(@Param("agencyId") String agencyId, @Param("bizType") String bizType); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询子级用户分布【机关级别】 |
|
|
|
* @param parentId |
|
|
|
* @Description 查询子级用户分布【机关级别】 |
|
|
|
* @author zxc |
|
|
|
* @date 2020/8/19 9:33 上午 |
|
|
|
*/ |
|
|
|
List<UserDistributionResultDTO> selectUserDistributionAgency(@Param("parentId") String parentId); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询子级党员分布【机关级别】 |
|
|
|
* @param parentId |
|
|
|
* @Description 查询子级党员分布【机关级别】 |
|
|
|
* @author zxc |
|
|
|
* @date 2020/8/19 10:30 上午 |
|
|
|
*/ |
|
|
@ -93,4 +94,14 @@ public interface ScreenCustomerAgencyDao { |
|
|
|
* @author sun |
|
|
|
*/ |
|
|
|
int selectRootAgency(@Param("agencyId") String agencyId); |
|
|
|
|
|
|
|
/** |
|
|
|
* desc: 根据orgId获取组织信息 |
|
|
|
* |
|
|
|
* @param agencyId |
|
|
|
* @return com.epmet.evaluationindex.screen.dto.result.CompartmentResultDTO |
|
|
|
* @author LiuJanJun |
|
|
|
* @date 2020/10/23 3:54 下午 |
|
|
|
*/ |
|
|
|
CompartmentResultDTO getAgencyInfoByAegncyId(@Param("agencyId") String agencyId); |
|
|
|
} |