hwh
2024-06-27 b1ccdb760b9c16200831a2617caf9318b1be86b3
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);