040aeef5d8a803a207d77ac6557b15387c846944.svn-base 999 B

123456789101112131415161718192021222324252627282930313233343536
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.core.persistence.CrudDao;
  3. import cn.com.goldenwater.dcproj.model.BisInspRssfdrRgstrImplmt;
  4. import cn.com.goldenwater.dcproj.param.BisInspRssfdrRgstrImplmtParam;
  5. import org.springframework.stereotype.Repository;
  6. import java.util.List;
  7. /**
  8. * @author lune
  9. * @date 2020-9-11
  10. */
  11. @Repository
  12. public interface BisInspRssfdrRgstrImplmtDao extends CrudDao<BisInspRssfdrRgstrImplmt, BisInspRssfdrRgstrImplmtParam> {
  13. /**
  14. * ��ȡ��������
  15. * @return
  16. */
  17. List<BisInspRssfdrRgstrImplmt> findAll();
  18. /**
  19. * ����ɸѡ������ȡ����
  20. * @param BisInspRssfdrRgstrImplmtParam
  21. * @return
  22. */
  23. int selectCount(BisInspRssfdrRgstrImplmtParam bisInspRssfdrRgstrImplmtParam);
  24. /**
  25. * ���������޸���Ϣ
  26. * @param BisInspRssfdrRgstrImplmtParam
  27. * @return
  28. */
  29. int updateBy(BisInspRssfdrRgstrImplmtParam bisInspRssfdrRgstrImplmtParam);
  30. }