admin
2019-10-12 59b262966f00605a39a0de1e03ce79e5e0f425d9
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);
 
}