| 12345678910111213141516171819202122232425262728 |
- 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<BisInspSafeExtManage, BisInspSafeExtManageParam> {
- void updateBy(BisInspSafeExtManage inspSafeExtManage);
- public BisInspSafeExtApp getSafeExtApp(String id);
- public List<BisInspSafeExtManage> findRsvrProjectList(BisInspSafeExtManageParam inspSafeExtManageParam);
- public int selectNewCount();
- int updateResRun(BisInspSafeExtManage bisInspSafeExtManage);
- int updateDam(BisInspSafeExtManage bisInspSafeExtManage);
- }
|