parent
27c6a87353
commit
14965cb938
@ -0,0 +1,20 @@
|
||||
package com.lsy.dao;
|
||||
|
||||
import com.lsy.model.Accountlsy;
|
||||
import com.lsy.model.Reserve;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface ReserveDao {
|
||||
|
||||
//查询所有预约数据
|
||||
List<Reserve> findAll();
|
||||
//根据房间号查询
|
||||
Reserve findByroomN(String roomN);
|
||||
//创建预约信息
|
||||
int create(Reserve Reserve);
|
||||
//修改预约信息
|
||||
int modify(Reserve Reserve);
|
||||
//删除预约信息
|
||||
int delect(Reserve Reserve);
|
||||
}
|
Loading…
Reference in new issue