7e349a9006efe7e28771d421c5548ebb3b464e49.svn-base 1.0 KB

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