using Rhea.Common;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Tiger.Model;
|
using Tiger.Model.Base;
|
|
namespace Tiger.IBusiness
|
{
|
/// <summary>
|
/// 备料任务单据
|
/// </summary>
|
public interface IPreparation
|
{
|
#region Propertys & Variables
|
public BIZ_WMS_PREP Order { get; set; }
|
#endregion Propertys & Variables
|
|
#region Functions
|
/// <summary>
|
/// 备料任务添加单据
|
/// </summary>
|
/// <param name="bizType"></param>
|
/// <param name="orderNo"></param>
|
/// <returns></returns>
|
public ApiAction<ScanOutput> AddOrder(BIZ_WMS_PREP.BIZ_TYPEs bizType, string orderNo);
|
#endregion Functions
|
}
|
}
|