服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
6 天以前 f8be4db0be9e9de5830dd41f7d156c368a1ea43f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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<WMS_ITEM_PKG> Packages { get; set; }
        public List<WMS_ITEM> Items { get; set; }
        public List<WMS_ITEM_EXT> ItemsExt { get; set; }
        public List<WMS_ITEM_HIS> History { get; set; }
        public List<WMS_ITEM.STATUSs> 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; }
    }
}