a93ef0cac53344c71030297f9c215fea01f883d6.svn-base 865 B

12345678910111213141516171819202122232425262728
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.dcproj.model.BisInspSafeExtApp;
  3. import cn.com.goldenwater.dcproj.model.BisInspSafeExtManage;
  4. import cn.com.goldenwater.dcproj.param.BisInspSafeExtManageParam;
  5. import cn.com.goldenwater.core.persistence.CrudDao;
  6. import org.springframework.stereotype.Repository;
  7. import java.util.List;
  8. @Repository
  9. public interface BisInspSafeExtManageDao extends CrudDao<BisInspSafeExtManage, BisInspSafeExtManageParam> {
  10. void updateBy(BisInspSafeExtManage inspSafeExtManage);
  11. public BisInspSafeExtApp getSafeExtApp(String id);
  12. public List<BisInspSafeExtManage> findRsvrProjectList(BisInspSafeExtManageParam inspSafeExtManageParam);
  13. public int selectNewCount();
  14. int updateResRun(BisInspSafeExtManage bisInspSafeExtManage);
  15. int updateDam(BisInspSafeExtManage bisInspSafeExtManage);
  16. }