📄 ihistorydao.java
字号:
package com.ktv.dao;
import java.util.List;
import com.ktv.entity.History;
public interface IhistoryDAO {
public abstract void save(History history);
//开包房
public abstract void openBox(History history);
public abstract List getAll(int startRow, int pageSize);
public abstract List getAll();
public abstract Object get(int id);
public abstract void add(Object object);
public abstract List getList(int startRow, int pageSize);
public abstract int getSize();
public void UpdateBoxPrice(int boxId);
public Object getBox(int id);
public Object getHisByCon(String column,int key);
public Object find(final int boxId);
public boolean getHistoryStatus(final int boxId);
public void updateEndTime(final int boxId ,final java.util.Date date);
public void UpdateBoxStauts(final int boxId);
public void updateZongPrice(final int boxId ,final double historyAllPrice);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -