| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package cn.com.goldenwater.dcproj.dao;
- import cn.com.goldenwater.dcproj.model.BisInspWtuntRgstrHotel;
- import cn.com.goldenwater.dcproj.param.BisInspWtuntRgstrHotelParam;
- import cn.com.goldenwater.core.persistence.CrudDao;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * @author lune
- * @date 2020-8-17
- */
- @Repository
- public interface BisInspWtuntRgstrHotelDao extends CrudDao<BisInspWtuntRgstrHotel, BisInspWtuntRgstrHotelParam> {
- /**
- * ��ȡ��������
- *
- * @return
- */
- List<BisInspWtuntRgstrHotel> findAll();
- /**
- * ����ɸѡ������ȡ����
- *
- * @param BisInspWtuntRgstrHotelParam
- * @return
- */
- int selectCount(BisInspWtuntRgstrHotelParam bisInspWtuntRgstrHotelParam);
- /**
- * ������������Ϣ
- *
- * @param BisInspWtuntRgstrHotelParam
- * @return
- */
- int updateBy(BisInspWtuntRgstrHotelParam bisInspWtuntRgstrHotelParam);
- }
|