From fab78d94b10f66cf161b282e5f31d06e26abb4e4 Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期二, 21 一月 2025 09:35:40 +0800
Subject: [PATCH] 为 _wo 对象添加 RELEASE_TIME 和 RELEASE_USER 属性

---
 Tiger.Business/BizContext.cs |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/Tiger.Business/BizContext.cs b/Tiger.Business/BizContext.cs
index de6d323..d4fdd5a 100644
--- a/Tiger.Business/BizContext.cs
+++ b/Tiger.Business/BizContext.cs
@@ -6,7 +6,6 @@
 using System.Collections.Generic;
 using System.Linq;
 using System.Reflection;
-using Tiger.Business.WMS.Transaction;
 using Tiger.IBusiness;
 
 namespace Tiger.Business
@@ -93,5 +92,10 @@
         {
             return BizContext.Container.Resolve<T>();
         }
+
+        public static dynamic Resolve(string typeFullName)
+        {
+            return BizContext.Container.Resolve(System.Type.GetType(typeFullName, true));
+        }
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3