服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
5 天以前 e3a5a26eded2aa9b704238ad021b0eef316ff678
1
2
3
4
5
6
7
8
9
10
11
using Autofac;
using Tiger.IBusiness;
 
namespace Tiger.Api.iBiz
{
    public class WMS
    {
        public static IWMSContext Context => DI.Resolve<IWMSContext>();
        public static IBiz_WmsItem WmsItem => DI.Resolve<IBiz_WmsItem>();
    }
}