|
|
@ -162,6 +162,7 @@ public interface IcResiUserDao extends BaseDao<IcResiUserEntity> { |
|
|
|
|
|
|
|
/** |
|
|
|
* desc:根据身份证号获取居民信息 |
|
|
|
* |
|
|
|
* @param idCard |
|
|
|
* @param customerId |
|
|
|
* @return |
|
|
@ -273,6 +274,7 @@ public interface IcResiUserDao extends BaseDao<IcResiUserEntity> { |
|
|
|
*/ |
|
|
|
Map<String, BigDecimal> getDataAnalyseCount(@Param("customerId") String customerId, @Param("tableName") String tableName, |
|
|
|
@Param("columnList") List<String> columnList, @Param("id") String id, @Param("level") String level); |
|
|
|
|
|
|
|
List<Map<String, String>> getIcUserList(@Param("customerId") String customerId, @Param("columns") List<String> columns); |
|
|
|
|
|
|
|
/** |
|
|
@ -304,6 +306,7 @@ public interface IcResiUserDao extends BaseDao<IcResiUserEntity> { |
|
|
|
|
|
|
|
/** |
|
|
|
* desc:根据维度获取居民信息表的数据[正常状态的居民] |
|
|
|
* |
|
|
|
* @param formDTO |
|
|
|
* @return |
|
|
|
*/ |
|
|
@ -322,6 +325,7 @@ public interface IcResiUserDao extends BaseDao<IcResiUserEntity> { |
|
|
|
|
|
|
|
/** |
|
|
|
* 获取客户下志愿者信息 |
|
|
|
* |
|
|
|
* @Param customerId |
|
|
|
* @Return {@link List< IcVolunteerPolyDTO>} |
|
|
|
* @Author zhaoqifeng |
|
|
@ -329,11 +333,34 @@ public interface IcResiUserDao extends BaseDao<IcResiUserEntity> { |
|
|
|
*/ |
|
|
|
List<IcVolunteerPolyDTO> getVolunteerList(@Param("customerId") String customerId, @Param("userId") String userId); |
|
|
|
|
|
|
|
/** |
|
|
|
* 统计数据 |
|
|
|
* |
|
|
|
* @param idCard |
|
|
|
* @param customerId |
|
|
|
* @return int |
|
|
|
* @author LZN |
|
|
|
* @date 2022/6/23 9:47 |
|
|
|
*/ |
|
|
|
int selectCountByIdCard(@Param("idCard") String idCard, @Param("customerId") String customerId); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* 根据身份证号修改数据 |
|
|
|
* |
|
|
|
* @param entity |
|
|
|
* @return void |
|
|
|
* @author LZN |
|
|
|
* @date 2022/6/23 9:47 |
|
|
|
*/ |
|
|
|
void updateIcResiUserByIdCard(@Param("entity") IcResiUserEntity entity); |
|
|
|
|
|
|
|
/** |
|
|
|
* 根据身份证号查询id |
|
|
|
* |
|
|
|
* @param customerId |
|
|
|
* @param idCard |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
String seletIdByIdCard(@Param("customerId") String customerId, @Param("idCard") String idCard); |
|
|
|
|
|
|
|
|
|
|
|