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.
|
|
|
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> {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @describe: 根据icResiUserId查询
|
|
|
|
* @author wangtong
|
|
|
|
* @date 2022/6/1 16:01
|
|
|
|
* @params [icResiUserId]
|
|
|
|
* @return com.epmet.entity.IcResiUserConfirmEntity
|
|
|
|
*/
|
|
|
|
IcResiUserConfirmEntity selectByIcResiUserId(@Param("icResiUserId") String icResiUserId);
|
|
|
|
}
|