?? orderservice.java
字號:
package com.service;
import com.ORM.*;
import java.util.*;
public interface OrderService {
/** 新增訂單 */
public boolean addOrder(Orders order) throws Exception;
/** 瀏覽某會(huì)員的所有訂單 */
public List browseOrder(Member member) throws Exception;
/** 瀏覽所有訂單 */
public List browseOrder() throws Exception;
/** 瀏覽某訂單的所有商品記錄 */
public List browseOrderMer(Cart cart) throws Exception;
/** 刪除訂單 */
public boolean delOrder(Integer id) throws Exception;
/** 裝載訂單 */
public Orders loadOrder(Integer id) throws Exception;
/** 修改訂單 */
public boolean updateOrder(Orders order) throws Exception;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -