Administrator
2024-07-15 9ef1185785681527be098eceaf44201f634c3c0f
Wms/Utility/Job/InternalMethodJob.cs
@@ -30,7 +30,15 @@
            try
            {
                /// 加载 WMS.BLL 类库
                Assembly assembly = Assembly.LoadFrom("bin\\Debug\\netcoreapp3.1\\WMS.BLL.dll");
                Assembly assembly;
                try
                {
                    assembly = Assembly.LoadFrom("WMS.BLL.dll");
                }
                catch (Exception)
                {
                    assembly = Assembly.LoadFrom("bin\\Debug\\netcoreapp3.1\\WMS.BLL.dll");
                }
                // 获取 WMS.BLL的类型
                Type classType = assembly.GetType("WMS.BLL." + className);