2018-10-13 16:24:01 +08:00

17 lines
366 B
Java

package cn.mafangui.hotel.mapper;
import cn.mafangui.hotel.entity.Hotel;
public interface HotelMapper {
int deleteByPrimaryKey(Integer hotelId);
int insert(Hotel record);
int insertSelective(Hotel record);
Hotel selectByPrimaryKey(Integer hotelId);
int updateByPrimaryKeySelective(Hotel record);
int updateByPrimaryKey(Hotel record);
}