You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
350 B
19 lines
350 B
package com.hai.service;
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.hai.entity.HighOrder;
|
|
|
|
/**
|
|
* 千猪订单
|
|
*/
|
|
public interface HighQzOrderService {
|
|
|
|
/**
|
|
* 组装千猪订单
|
|
* @param orderNo
|
|
* @param orderType
|
|
* @return
|
|
*/
|
|
HighOrder assemblyQzOrder(String orderNo,String orderType) throws Exception;
|
|
|
|
}
|
|
|