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.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("orgId") String orgId,
|
|
|
|
@Param("orgType") String orgType,
|
|
|
|
@Param("specialType") String specialType,
|
|
|
|
@Param("name") String name,
|
|
|
|
@Param("mobile") String mobile,
|
|
|
|
@Param("idCard") String idCard);
|
|
|
|
}
|