|
|
@ -33,18 +33,18 @@ import java.util.List; |
|
|
|
public interface ScreenCustomerAgencyDao { |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询客户根组织ID |
|
|
|
* @param customerId |
|
|
|
* @Description 查询客户根组织ID |
|
|
|
* @author zxc |
|
|
|
* @date 2020/8/18 2:44 下午 |
|
|
|
*/ |
|
|
|
TreeResultDTO selectRootAgencyId(@Param("customerId")String customerId); |
|
|
|
TreeResultDTO selectRootAgencyId(@Param("customerId") String customerId); |
|
|
|
|
|
|
|
TreeResultDTO selectRootAgencyIdByBizType(@Param("customerId")String customerId,@Param("bizType")String bizType); |
|
|
|
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,39 +53,40 @@ public interface ScreenCustomerAgencyDao { |
|
|
|
List<TreeResultDTO> selectSubAgencyListByBizType(@Param("subAgencyPids") String subAgencyPids); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询当前机关的区域信息 |
|
|
|
* @param agencyId |
|
|
|
* @Description 查询当前机关的区域信息 |
|
|
|
* @author zxc |
|
|
|
* @date 2020/8/18 4:51 下午 |
|
|
|
*/ |
|
|
|
CompartmentResultDTO getAgencyAreaInfo(@Param("agencyId")String agencyId); |
|
|
|
CompartmentResultDTO getAgencyAreaInfo(@Param("agencyId") String agencyId); |
|
|
|
|
|
|
|
CompartmentResultDTO getAgencyAreaInfoByBizType(@Param("agencyId")String agencyId,@Param("bizType")String bizType); |
|
|
|
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); |
|
|
|
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); |
|
|
|
List<UserDistributionResultDTO> selectUserDistributionAgency(@Param("parentId") String parentId); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询子级党员分布【机关级别】 |
|
|
|
* @param parentId |
|
|
|
* @Description 查询子级党员分布【机关级别】 |
|
|
|
* @author zxc |
|
|
|
* @date 2020/8/19 10:30 上午 |
|
|
|
*/ |
|
|
|
List<ParymemberDistributionResultDTO> selectParymemberDistribution(@Param("parentId")String parentId); |
|
|
|
List<ParymemberDistributionResultDTO> selectParymemberDistribution(@Param("parentId") String parentId); |
|
|
|
|
|
|
|
/** |
|
|
|
* @param agencyId |
|
|
@ -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); |
|
|
|
} |