-- 新版提交
This commit is contained in:
@@ -4,8 +4,10 @@ import com.alibaba.fastjson.JSONObject;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.peanut.common.utils.PageUtils;
|
||||
import com.peanut.common.utils.R;
|
||||
import com.peanut.modules.book.entity.BuyOrderEntity;
|
||||
|
||||
import javax.xml.soap.Text;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@@ -18,7 +20,7 @@ import java.util.Map;
|
||||
*/
|
||||
public interface BuyOrderService extends IService<BuyOrderEntity> {
|
||||
|
||||
PageUtils queryPage(Map<String, Object> params);
|
||||
PageUtils queryPage(Map<String, Object> params) throws Exception;
|
||||
PageUtils queryPage1(Map<String, Object> params);
|
||||
|
||||
//更新订单状态
|
||||
@@ -40,10 +42,19 @@ public interface BuyOrderService extends IService<BuyOrderEntity> {
|
||||
public Page checkOrder(Map<String, Object> params);
|
||||
|
||||
// 批量发货功能
|
||||
public void blendSendFMS(Integer[] orderDetailIds,String shipperCode,String shipperName);
|
||||
public void blendSendFMS(Integer[] orderDetailIds, String shipperCode, String shipperName);
|
||||
|
||||
|
||||
public int getProductGoodsType (Map<String, Object> param,Map<String, Object> productMap);
|
||||
|
||||
|
||||
public R randomOrderCode( BuyOrderEntity buyOrder);
|
||||
|
||||
PageUtils querySheet(Map<String, Object> params);
|
||||
|
||||
|
||||
PageUtils queryPages(Map<String, Object> params);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user