yujian
2019-10-11 26d8a34915d8c0cd19c3a2d21706b12377eb1e05
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
}