yujian
2020-06-16 e7920b14a9baab97035a1a529da85d124a2bcacd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.yeshi.fanli.service.inter.order.suning;
 
import java.util.List;
 
import com.yeshi.fanli.entity.suning.SuningOrderInfo;
import com.yeshi.fanli.exception.suning.SuningOrderException;
 
public interface SuningOrderService {
 
    /**
     * 添加订单
     * 
     * @param order
     * @throws SuningOrderInfoException
     */
    public void addOrder(SuningOrderInfo order) throws SuningOrderException;
 
    /**
     * 根据主键ID查询
     * 
     * @param orderId
     * @return
     */
    public SuningOrderInfo selectByPrimaryKey(Long orderId);
 
    /**
     * 根据订单号查询
     * 
     * @param orderId
     * @return
     */
    public List<SuningOrderInfo> listByOrderCode(String orderCode);
 
    /**
     * 根据订单行号查询
     * @Title: selectByOrderLineNumber
     * @Description: 
     * @param orderLineNo
     * @return 
     * SuningOrderInfo 返回类型
     * @throws
     */
    public SuningOrderInfo selectByOrderLineNumber(String orderLineNo);
 
}