package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.dto.BisInspRsfcoqhRgstrDto; import cn.com.goldenwater.dcproj.dto.BisInspVillqhRgstrDto; import cn.com.goldenwater.dcproj.model.BisInspBase; import cn.com.goldenwater.dcproj.model.BisInspRsfcoqhRgstr; import cn.com.goldenwater.dcproj.param.BisInspRsfcoqhRgstrParam; import cn.com.goldenwater.core.persistence.CrudDao; import cn.com.goldenwater.dcproj.param.TypeParam; import com.github.pagehelper.PageInfo; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface BisInspRsfcoqhRgstrDao extends CrudDao { List findPageList(TypeParam typeParam); List getRsvrByIdNm(@Param("groupId") String groupId, @Param("nm") String nm); }