yujian
2019-11-11 3ce9e928e082ff8abf697dba560cbfbb412e89f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yeshi.fanli.service.inter.elme;
 
import com.yeshi.fanli.entity.elme.ElmeOrder;
import com.yeshi.fanli.exception.elme.ElmeOrderException;
 
/**
 * 饿了么订单服务
 * 
 * @author Administrator
 *
 */
public interface ElmeOrderService {
    /**
     * 添加订单
     * 
     * @param order
     */
    public void addOrder(ElmeOrder order) throws ElmeOrderException;
 
    public ElmeOrder selectByPrimaryKey(Long id);
 
}