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.
23 lines
822 B
23 lines
822 B
package com.epmet.dao;
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
|
import com.epmet.dto.PovertyManageDTO;
|
|
import com.epmet.entity.PovertyManageEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2023-06-16
|
|
*/
|
|
@Mapper
|
|
public interface PovertyManageDao extends BaseDao<PovertyManageEntity> {
|
|
|
|
List<PovertyManageDTO> search(@Param("userName") String userName, @Param("mobile") String mobile,
|
|
@Param("idCard") String idCard, @Param("povertyType") String povertyType,
|
|
@Param("povertyStatus") Integer povertyStatus, @Param("orgIdPath") String orgPath);
|
|
|
|
Boolean isExist(@Param("resiUserId") String resiUserId);
|
|
}
|
|
|