yujian
2019-07-16 394c3eb18c7b9a2af63d65a916ed86aad0f7e2c2
1
2
3
4
5
6
7
8
9
10
package com.yeshi.fanli.service.inter.jd;
 
import com.yeshi.fanli.entity.jd.JDOrder;
import com.yeshi.fanli.exception.jd.JDOrderException;
 
public interface JDOrderService {
 
    public void addJDOrder(JDOrder order) throws JDOrderException;
 
}