mirror of
https://github.com/FreeeBird/hotel.git
synced 2025-11-02 21:44:50 +08:00
入住登记完成
This commit is contained in:
@@ -15,6 +15,8 @@ public interface CheckInMapper {
|
||||
|
||||
CheckIn selectByPrimaryKey(Integer checkInId);
|
||||
|
||||
CheckIn selectByRoomNumber(String roomNumber);
|
||||
|
||||
int updateByRoomNumber(String roomNumber);
|
||||
|
||||
int updateByPrimaryKeySelective(CheckIn record);
|
||||
@@ -23,4 +25,4 @@ public interface CheckInMapper {
|
||||
|
||||
List<CheckIn> selectAll();
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,6 +16,8 @@ public interface OrderMapper {
|
||||
|
||||
Order selectByPrimaryKey(Integer orderId);
|
||||
|
||||
Order selectByNameAndPhone(Order record);
|
||||
|
||||
int updateByPrimaryKeySelective(Order record);
|
||||
|
||||
int updateByPrimaryKey(Order record);
|
||||
|
||||
@@ -15,6 +15,8 @@ public interface RoomMapper {
|
||||
|
||||
Room selectByPrimaryKey(Integer roomId);
|
||||
|
||||
Room selectByNumber(String roomNumber);
|
||||
|
||||
int updateByPrimaryKeySelective(Room record);
|
||||
|
||||
int updateByPrimaryKey(Room record);
|
||||
|
||||
Reference in New Issue
Block a user