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
{
///
/// 备料任务单据
///
public interface IPreparation
{
#region Propertys & Variables
public BIZ_WMS_PREP Order { get; set; }
#endregion Propertys & Variables
#region Functions
///
/// 备料任务添加单据
///
///
///
///
public ApiAction AddOrder(BIZ_WMS_PREP.BIZ_TYPEs bizType, string orderNo);
#endregion Functions
}
}