You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.5 KiB
51 lines
1.5 KiB
package com.epmet.dao;
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
|
import com.epmet.entity.IcResiUserConfirmEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* 居民信息审核表
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-06-01
|
|
*/
|
|
@Mapper
|
|
public interface IcResiUserConfirmDao extends BaseDao<IcResiUserConfirmEntity> {
|
|
|
|
/**
|
|
* @return com.epmet.entity.IcResiUserConfirmEntity
|
|
* @describe: 根据icResiUserId查询
|
|
* @author wangtong
|
|
* @date 2022/6/1 16:01
|
|
* @params [icResiUserId]
|
|
*/
|
|
IcResiUserConfirmEntity selectByIcResiUserId(@Param("icResiUserId") String icResiUserId);
|
|
|
|
/**
|
|
* 【我的家庭】迁出家庭成员 根据身份证号查询是否已提交
|
|
*
|
|
* @param idCard
|
|
* @param customerId
|
|
* @param submitType
|
|
* @return int
|
|
* @author LZN
|
|
* @date 2022/6/10 11:04
|
|
*/
|
|
int selectByIdCard(@Param("idCard") String idCard, @Param("customerId") String customerId,
|
|
@Param("submitType") String submitType);
|
|
|
|
/**
|
|
* 【我的家庭】迁出家庭成员 先删后添
|
|
*
|
|
* @param idCard
|
|
* @param customerId
|
|
* @param submitType
|
|
* @return void
|
|
* @author LZN
|
|
* @date 2022/6/10 11:04
|
|
*/
|
|
void deleteByIdCard(@Param("idCard") String idCard, @Param("customerId") String customerId,
|
|
@Param("submitType") String submitType);
|
|
}
|
|
|