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 { /** * ��ȡ�������� * * @return */ List findAll(); /** * ����ɸѡ������ȡ���� * * @param BisInspWtuntRgstrHotelParam * @return */ int selectCount(BisInspWtuntRgstrHotelParam bisInspWtuntRgstrHotelParam); /** * ���������޸���Ϣ * * @param BisInspWtuntRgstrHotelParam * @return */ int updateBy(BisInspWtuntRgstrHotelParam bisInspWtuntRgstrHotelParam); }