package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.dto.BisInspRsvrSdDto; import cn.com.goldenwater.dcproj.model.BisInspRsvrSd; import cn.com.goldenwater.dcproj.param.BisInspRsvrSdParam; import cn.com.goldenwater.core.persistence.CrudDao; import cn.com.goldenwater.dcproj.param.PagePersObjParam; import cn.com.goldenwater.dcproj.param.TypeParam; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface BisInspRsvrSdDao extends CrudDao { List findPageList(TypeParam typeParam); List getListByInspGroupIdObjType(PagePersObjParam pagePersObjParam); }