|
|
@ -5,10 +5,12 @@ import com.epmet.dto.result.lingshan.LingShanHelpCrowdListRstDTO; |
|
|
|
import com.epmet.dto.result.lingshan.LingShanHelpCrowdScreenQtyOfSubOrgRstDTO; |
|
|
|
import com.epmet.dto.result.lingshan.LingShanHelpCrowdStatusByCateRstDTO; |
|
|
|
import com.epmet.entity.LingshanHelpCrowdResiMergeEntity; |
|
|
|
import org.apache.ibatis.annotations.MapKey; |
|
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
/** |
|
|
|
* 居民-重点帮扶人群对应关系 |
|
|
@ -20,12 +22,12 @@ import java.util.List; |
|
|
|
public interface LingshanHelpCrowdResiMergeDao extends BaseDao<LingshanHelpCrowdResiMergeEntity> { |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description: 特殊人群:列表 |
|
|
|
* @param orgIdPath: |
|
|
|
* @param helpType: |
|
|
|
* @param name: |
|
|
|
* @param mobile: |
|
|
|
* @param idCard: |
|
|
|
* @Description: 特殊人群:列表 |
|
|
|
* @Return java.util.List<com.epmet.dto.result.lingshan.LingShanHelpCrowdListRstDTO> |
|
|
|
* @Author: wangxianzhang |
|
|
|
* @Date: 2023/5/25 4:07 PM |
|
|
@ -37,8 +39,8 @@ public interface LingshanHelpCrowdResiMergeDao extends BaseDao<LingshanHelpCrowd |
|
|
|
@Param("idCard") String idCard); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description: 根据orgIdPath,统计本级及下级所有的分类及其数量 |
|
|
|
* @param orgIdPath: |
|
|
|
* @Description: 根据orgIdPath,统计本级及下级所有的分类及其数量 |
|
|
|
* @Return java.util.List<com.epmet.dto.result.lingshan.LingShanHelpCrowdStatusByCateRstDTO> |
|
|
|
* @Author: wangxianzhang |
|
|
|
* @Date: 2023/5/29 2:15 PM |
|
|
@ -46,8 +48,8 @@ public interface LingshanHelpCrowdResiMergeDao extends BaseDao<LingshanHelpCrowd |
|
|
|
List<LingShanHelpCrowdStatusByCateRstDTO> statsByCategory(@Param("customerId") String customerId, @Param("orgIdPath") String orgIdPath); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description: 子组织下的帮扶人群数量 |
|
|
|
* @param orgIdPath: |
|
|
|
* @Description: 子组织下的帮扶人群数量 |
|
|
|
* @Return java.util.List<com.epmet.dto.result.lingshan.LingShanHelpCrowdScreenQtyOfSubOrgRstDTO> |
|
|
|
* @Author: wangxianzhang |
|
|
|
* @Date: 2023/5/29 3:14 PM |
|
|
@ -55,4 +57,7 @@ public interface LingshanHelpCrowdResiMergeDao extends BaseDao<LingshanHelpCrowd |
|
|
|
List<LingShanHelpCrowdScreenQtyOfSubOrgRstDTO> qtyOfSubOrg(@Param("orgIdPath") String orgIdPath, |
|
|
|
@Param("helpType") String helpType, |
|
|
|
@Param("customerId") String customerId); |
|
|
|
} |
|
|
|
|
|
|
|
@MapKey("resiId") |
|
|
|
List<Map<String, String>> findHlepTypeByResiUserId(@Param("userIds") List<String> userIds); |
|
|
|
} |
|
|
|