入住登记完成

This commit is contained in:
FreeeBird
2018-12-09 14:00:13 +08:00
parent 7ebdc00b16
commit c1591ad821
18 changed files with 184 additions and 45 deletions

View File

@@ -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();
}
}

View File

@@ -16,6 +16,8 @@ public interface OrderMapper {
Order selectByPrimaryKey(Integer orderId);
Order selectByNameAndPhone(Order record);
int updateByPrimaryKeySelective(Order record);
int updateByPrimaryKey(Order record);

View File

@@ -15,6 +15,8 @@ public interface RoomMapper {
Room selectByPrimaryKey(Integer roomId);
Room selectByNumber(String roomNumber);
int updateByPrimaryKeySelective(Room record);
int updateByPrimaryKey(Room record);