提交 76f6db32 编写于 作者: D DESKTOP-RCLVOBJ\14353

在服务层添加查询所有房间 查询空 ,预定。入住。维修 打扫房间数量

上级 372d7e52
......@@ -31,6 +31,18 @@ public interface HouseService {
//删除客房
int deleteHouseI(int house_id);
//查询所有房间数量
Integer queryHouseNumber();
//查询空闲房间总数
Integer queryCountByStateNull();
//查询预定房间总数
Integer queryCountByStateReserve();
//查询入住房间总数
Integer queryCountByStateCheckIn();
//查询待打扫房间总数
Integer queryCountByStateClean();
//查询待维修房间总数
Integer queryCountByStateMaintain();
//住房功能
public Map<String, Object> checkIn(int customerId, String name,int day,int numberOfPeople,int userId) throws ParseException;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册