|  |  |  | 
|---|
|  |  |  | package com.zy.asrs.common.openapi.service; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.zy.asrs.common.openapi.entity.dto.OrderListDto; | 
|---|
|  |  |  | import com.zy.asrs.common.openapi.entity.param.CreateMatParam; | 
|---|
|  |  |  | import com.zy.asrs.common.openapi.entity.param.GenerateOrderPakInParam; | 
|---|
|  |  |  | import com.zy.asrs.common.openapi.entity.param.GenerateOrderPakOutParam; | 
|---|
|  |  |  | import com.zy.asrs.common.openapi.entity.param.OrderListParam; | 
|---|
|  |  |  | import com.zy.asrs.common.wms.entity.DocType; | 
|---|
|  |  |  | import com.zy.asrs.common.wms.entity.OrderSettle; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public interface ApiService { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | void generateOrderPakIn(GenerateOrderPakInParam param); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 生成出库订单 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | void generateOrderPakOut(GenerateOrderPakOutParam param); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<DocType> getOrderType(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<OrderSettle> getOrderStatus(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<OrderListDto> getOrderList(OrderListParam param, Long hostId); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int createMat(CreateMatParam param); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|