mirror of
https://github.com/FreeeBird/hotel.git
synced 2025-05-06 19:49:26 +08:00
17 lines
366 B
Java
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);
|
|
} |