|
|
@ -54,15 +54,16 @@ public interface IcResiUserDao extends BaseDao<IcResiUserEntity> { |
|
|
|
**/ |
|
|
|
void upTable(@Param("tableName") String tableName, @Param("id") String id, @Param("map") Map<String, ?> map); |
|
|
|
|
|
|
|
List<Map<String,Object>> selectListResiMap(@Param("customerId") String customerId, |
|
|
|
@Param("formCode") String formCode, |
|
|
|
@Param("conditions") List<ResiUserQueryValueDTO> conditions, |
|
|
|
@Param("resultColumns") List<IcFormResColumnDTO> resultColumns, |
|
|
|
@Param("subTables") List<String> subTables, |
|
|
|
@Param("currentStaffAgencyId")String currentStaffAgencyId, |
|
|
|
@Param("staffOrgPath") String staffOrgPath, |
|
|
|
@Param("resultTableName")String resultTableName, |
|
|
|
@Param("keyword") String keyword); |
|
|
|
List<Map<String, Object>> selectListResiMap(@Param("customerId") String customerId, |
|
|
|
@Param("formCode") String formCode, |
|
|
|
@Param("conditions") List<ResiUserQueryValueDTO> conditions, |
|
|
|
@Param("resultColumns") List<IcFormResColumnDTO> resultColumns, |
|
|
|
@Param("subTables") List<String> subTables, |
|
|
|
@Param("currentStaffAgencyId") String currentStaffAgencyId, |
|
|
|
@Param("staffOrgPath") String staffOrgPath, |
|
|
|
@Param("resultTableName") String resultTableName, |
|
|
|
@Param("keyword") String keyword); |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询主表 |
|
|
|
* |
|
|
@ -238,15 +239,15 @@ public interface IcResiUserDao extends BaseDao<IcResiUserEntity> { |
|
|
|
|
|
|
|
List<VolunteerDistributionResultDTO.Distribution> listIcResiInfosByUserIds(@Param("userIds") List<String> userIds); |
|
|
|
|
|
|
|
Map<String, String> getCategoryListMap(@Param("columns")List<String> columns, @Param("icUserId") String icUserId); |
|
|
|
Map<String, String> getCategoryListMap(@Param("columns") List<String> columns, @Param("icUserId") String icUserId); |
|
|
|
|
|
|
|
Map<String, String> selectResiInfoMap(@Param("idCard") String idCard, @Param("resiId") String resiId); |
|
|
|
|
|
|
|
List<Map<String,Object>> selectResiUsers(@Param("types")List<String> types,@Param("orgId")String orgId); |
|
|
|
List<Map<String, Object>> selectResiUsers(@Param("types") List<String> types, @Param("orgId") String orgId); |
|
|
|
|
|
|
|
List<String> icUserCustomerIds(); |
|
|
|
|
|
|
|
List<Map<String, String>> getIcUserList(@Param("customerId") String customerId, @Param("columns")List<String> columns); |
|
|
|
List<Map<String, String>> getIcUserList(@Param("customerId") String customerId, @Param("columns") List<String> columns); |
|
|
|
|
|
|
|
/** |
|
|
|
* desc: 获取数据分析列中的 各类居民数据 |
|
|
@ -254,9 +255,9 @@ public interface IcResiUserDao extends BaseDao<IcResiUserEntity> { |
|
|
|
* @param customerId |
|
|
|
* @param tableName |
|
|
|
* @param columnList |
|
|
|
* @param id 非必填 leve有值时 必填 |
|
|
|
* @param level 非必填 |
|
|
|
* @return java.util.Map<java.lang.String,java.math.BigDecimal> 字段名:数量 |
|
|
|
* @param id 非必填 leve有值时 必填 |
|
|
|
* @param level 非必填 |
|
|
|
* @return java.util.Map<java.lang.String, java.math.BigDecimal> 字段名:数量 |
|
|
|
* @author LiuJanJun |
|
|
|
* @date 2022/2/12 3:03 下午 |
|
|
|
*/ |
|
|
@ -265,6 +266,7 @@ public interface IcResiUserDao extends BaseDao<IcResiUserEntity> { |
|
|
|
|
|
|
|
/** |
|
|
|
* Desc: 根据房屋IDs查询房屋下是否有存在居民的 |
|
|
|
* |
|
|
|
* @param ids |
|
|
|
* @author zxc |
|
|
|
* @date 2022/3/2 10:32 上午 |
|
|
@ -273,6 +275,7 @@ public interface IcResiUserDao extends BaseDao<IcResiUserEntity> { |
|
|
|
|
|
|
|
/** |
|
|
|
* 居民防疫信息查询 |
|
|
|
* |
|
|
|
* @Param formDTO |
|
|
|
* @Return {@link List< EpidemicPreventionResultDTO>} |
|
|
|
* @Author zhaoqifeng |
|
|
@ -281,6 +284,8 @@ public interface IcResiUserDao extends BaseDao<IcResiUserEntity> { |
|
|
|
List<EpidemicPreventionResultDTO> getEpidemicPreventionList(EpidemicPreventionFormDTO formDTO); |
|
|
|
|
|
|
|
List<EpidemicPreventionResultDTO> natList(EpidemicPreventionFormDTO formDTO); |
|
|
|
|
|
|
|
List<EpidemicPreventionResultDTO> vaccineList(EpidemicPreventionFormDTO formDTO); |
|
|
|
|
|
|
|
IcResiUserEntity selectResiNoDelFlag(@Param("icResiUserId") String icResiUserId); |
|
|
|
} |
|
|
|