package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.BisInspSafeExtApp; import cn.com.goldenwater.dcproj.model.BisInspSafeExtManage; import cn.com.goldenwater.dcproj.param.BisInspSafeExtManageParam; import cn.com.goldenwater.core.persistence.CrudDao; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface BisInspSafeExtManageDao extends CrudDao { void updateBy(BisInspSafeExtManage inspSafeExtManage); public BisInspSafeExtApp getSafeExtApp(String id); public List findRsvrProjectList(BisInspSafeExtManageParam inspSafeExtManageParam); public int selectNewCount(); int updateResRun(BisInspSafeExtManage bisInspSafeExtManage); int updateDam(BisInspSafeExtManage bisInspSafeExtManage); }