package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.BisInspPreList; import cn.com.goldenwater.dcproj.param.BisInspPreListParam; import cn.com.goldenwater.core.persistence.CrudDao; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface BisInspPreListDao extends CrudDao { void deleteByViewId(@Param("viewId") String viewId); List findAlListInfo(BisInspPreListParam inspPreListParam); }