forked from luyan/epmet-cloud-lingshan
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.
22 lines
1014 B
22 lines
1014 B
2 years ago
|
package com.epmet.dao;
|
||
|
|
||
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
||
|
import com.epmet.dto.result.LingShanSpecialCrowdListResultDTO;
|
||
|
import com.epmet.entity.IcSpecialEntity;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Mapper
|
||
|
public interface IcSpecialDao extends BaseDao<IcSpecialEntity> {
|
||
|
|
||
|
public IcSpecialEntity selectByResiId(@Param("resiId") String resiId);
|
||
|
|
||
|
List<LingShanSpecialCrowdListResultDTO> listSpecialCrowd(@Param("orgIdPath") String orgIdPath,
|
||
|
@Param("agencyId") String agencyId,
|
||
|
@Param("specialType") String specialType,
|
||
|
@Param("name") String name,
|
||
|
@Param("mobile") String mobile,
|
||
|
@Param("idCard") String idCard);
|
||
|
}
|