using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tiger.Model; namespace Tiger.IBusiness { public interface IInventory { public string SN { get; set; } //public Barcode Barcode { get; set; } //public bool IsQRCode => Barcode.IsQRCode; public WMS_ITEM_EXT ExtInfo { get; set; } public BAS_ITEM ItemInfo { get; set; } public WMS_WAREHOUSE Warehouse { get; set; } public WMS_REGION Region { get; set; } public WMS_SHELF Shelf { get; set; } public WMS_LOCATION Location { get; set; } public WMS_ITEM_PKG ParentPkg { get; set; } public List Packages { get; set; } public List Items { get; set; } public List ItemsExt { get; set; } public List History { get; set; } public List StatusList { get; } public bool isNormalStatus { get; } public WMS_ITEM.STATUSs Status { get; } public WMS_ITEM_PKG CurPkg { get; } public bool isExists { get; } public bool isMinPackage { get; } } }