first commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
using JSMachine.WMS.RPC.IBSRPC.Dto.In.BusinessParam;
|
||||
using JSMachine.WMS.RPC.IBSRPC.Dto.Out.BusinessResult;
|
||||
|
||||
namespace JSMachine.WMS.RPC.IBSRPC.IService
|
||||
{
|
||||
public interface IPaperStockOperator
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取原纸信息
|
||||
/// </summary>
|
||||
/// <param name="param"></param>
|
||||
/// <returns></returns>
|
||||
Task<PaperBaseInfoDto> QueryByPaperLabel(PaperInfoQueryParam param);
|
||||
|
||||
/// <summary>
|
||||
/// 原纸出库
|
||||
/// </summary>
|
||||
/// <param name="param"></param>
|
||||
/// <returns></returns>
|
||||
Task<IbsResultDto> PaperStockOut(PaperInfoQueryParam param);
|
||||
|
||||
/// <summary>
|
||||
/// 残卷入库
|
||||
/// </summary>
|
||||
/// <param name="param"></param>
|
||||
/// <returns></returns>
|
||||
Task<IbsResultDto> RePaperStockIn(PaperInfoQueryParam param);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user