📄 clothesinandoutdao.java
字号:
package dao.inandoutdao;
import java.util.Vector;
import dao.common.DbException;
public interface ClothesInAndOutDao {
public Vector findClothesInGether(String fromDate,String toDate)throws DbException;
public Vector findRefundment(String fromDate,String toDate)throws DbException;
public Vector findReWashed(String fromDate,String toDate)throws DbException;
public long[] findOutOfDateOrderId(String fromDate,String toDate)throws DbException;
public int[] findClothesIds(String fromDate,String toDate)throws DbException;
public int findClothesCountById(int clothesId)throws DbException;
//通过衣服编号获取该类衣服的总金额
public double getClothesIncomeByClothesId(int clothesId)throws DbException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -