using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using Rhea.Common;
using System;
using Tiger.Model;
using Tiger.Model.Base;
using Tiger.Model.Entitys.MES.Position;
namespace Tiger.IBusiness.WMS
{
///
/// WMS业务单据
///
public interface IWmsOrder where T : iBizOrder
{
public string OrderNo { get; set; }
public T Order { get; set; }
public List WmsItems { get; set; }
///
/// 更新缓存信息
///
///
public void Refreash(bool updateAll = false);
///
/// 关闭业务单据
///
///
public bool Close();
}
}