yujian
2019-10-14 3ac30b4c17cf071ce9c66a59c069ab83efae6d2d
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);
 
}