mirror of
https://github.com/FreeeBird/hotel.git
synced 2025-11-02 21:44:50 +08:00
完成入住登记接口编写
This commit is contained in:
@@ -1,7 +1,11 @@
|
||||
package cn.mafangui.hotel.mapper;
|
||||
|
||||
import cn.mafangui.hotel.entity.CheckIn;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Component
|
||||
public interface CheckInMapper {
|
||||
int deleteByPrimaryKey(Integer checkInId);
|
||||
|
||||
@@ -11,7 +15,12 @@ public interface CheckInMapper {
|
||||
|
||||
CheckIn selectByPrimaryKey(Integer checkInId);
|
||||
|
||||
int updateByRoomNumber(String roomNumber);
|
||||
|
||||
int updateByPrimaryKeySelective(CheckIn record);
|
||||
|
||||
int updateByPrimaryKey(CheckIn record);
|
||||
|
||||
List<CheckIn> selectAll();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user