343e389a5dbe7dc13662f408a49e0431d6ea63a1.svn-base 1010 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.dcproj.model.BisInspWtuntRgstrHotel;
  3. import cn.com.goldenwater.dcproj.param.BisInspWtuntRgstrHotelParam;
  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 BisInspWtuntRgstrHotelDao extends CrudDao<BisInspWtuntRgstrHotel, BisInspWtuntRgstrHotelParam> {
  13. /**
  14. * ��ȡ��������
  15. *
  16. * @return
  17. */
  18. List<BisInspWtuntRgstrHotel> findAll();
  19. /**
  20. * ����ɸѡ������ȡ����
  21. *
  22. * @param BisInspWtuntRgstrHotelParam
  23. * @return
  24. */
  25. int selectCount(BisInspWtuntRgstrHotelParam bisInspWtuntRgstrHotelParam);
  26. /**
  27. * ���������޸���Ϣ
  28. *
  29. * @param BisInspWtuntRgstrHotelParam
  30. * @return
  31. */
  32. int updateBy(BisInspWtuntRgstrHotelParam bisInspWtuntRgstrHotelParam);
  33. }