diff --git a/SlnMesnac.Ioc/DependencyConfigurator.cs b/SlnMesnac.Ioc/DependencyConfigurator.cs
deleted file mode 100644
index 5904b0d..0000000
--- a/SlnMesnac.Ioc/DependencyConfigurator.cs
+++ /dev/null
@@ -1,150 +0,0 @@
-using Autofac;
-using SlnMesnac.Repository;
-using SlnMesnac.Serilog;
-using System.Reflection;
-using TouchSocket.Sockets;
-
-#region << 版 本 注 释 >>
-/*--------------------------------------------------------------------
-* 版权所有 (c) 2024 WenJY 保留所有权利。
-* CLR版本:4.0.30319.42000
-* 机器名称:LAPTOP-E0N2L34V
-* 命名空间:SlnMesnac.Ioc
-* 唯一标识:496f8d2b-70e3-4a05-ae18-a9b0fcd06b82
-*
-* 创建者:WenJY
-* 电子邮箱:wenjy@mesnac.com
-* 创建时间:2024-03-27 21:58:35
-* 版本:V1.0.0
-* 描述:
-*
-*--------------------------------------------------------------------
-* 修改人:
-* 时间:
-* 修改说明:
-*
-* 版本:V1.0.0
-*--------------------------------------------------------------------*/
-#endregion << 版 本 注 释 >>
-namespace SlnMesnac.Ioc
-{
- ///
- /// Utility class for configuring dependency injection.
- ///
- public static class DependencyConfigurator
- {
- ///
- /// Configures dependency injection for the application.
- ///
- /// The Autofac container builder.
- public static void Configure(ContainerBuilder builder)
- {
- //注入Repository
- builder.RegisterGeneric(typeof(Repository<>)).As(typeof(Repository<>));
- RegisterImplementations(builder, Assembly.LoadFrom("SlnMesnac.Repository.dll"));
-
- //注入Plc
- RegisterTypeTransient(builder, Assembly.LoadFrom("SlnMesnac.Plc.dll"));
-
- //注入Rfid
- RegisterTypeTransient(builder, Assembly.LoadFrom("SlnMesnac.Rfid.dll"));
-
- //注入通用类
- RegisterType(builder, Assembly.LoadFrom("SlnMesnac.Common.dll"));
-
- //注入MQTT
- RegisterType(builder, Assembly.LoadFrom("SlnMesnac.Mqtt.dll"));
-
- //注入TouchSocket
- builder.RegisterType(typeof(TcpService));
- RegisterType(builder, Assembly.LoadFrom("SlnMesnac.TouchSocket.dll"));
-
- //注入业务类
- RegisterType(builder, Assembly.LoadFrom("SlnMesnac.Business.dll"));
-
- //注入代码生成
- RegisterType(builder, Assembly.LoadFrom("SlnMesnac.Generate.dll"));
-
- //注入Serilog日志帮助类
- builder.RegisterType(typeof(SerilogHelper)).SingleInstance();
- }
-
-
- ///
- /// 自动注入接口实现
- ///
- ///
- ///
- private static void RegisterImplementations(ContainerBuilder builder, Assembly assembly)
- {
- //自动注入仓储层的接口实现类
- var types = assembly.GetTypes()
- .Where(t => t.IsClass && !t.IsAbstract && !t.IsGenericType)
- .ToList();
-
- foreach (var type in types)
- {
- var interfaces = type.GetInterfaces();
-
- foreach (var @interface in interfaces)
- {
- builder.RegisterType(type).As(@interface);
- }
- }
- }
-
- ///
- /// 自动注入自定义类、抽象类,设置为单例
- ///
- ///
- ///
- private static void RegisterType(ContainerBuilder builder, Assembly assembly)
- {
- var types = assembly.GetTypes()
- .Where(t => t.IsClass && !t.IsAbstract && !t.IsGenericType)
- .ToList();
-
- foreach (var type in types)
- {
- var interfaces = type.GetInterfaces();
- var baseType = type.BaseType;
-
- #region 只注入抽象类 Delete By wenjy 2024-03-27
- //if (baseType != null && baseType.IsAbstract && baseType == typeof(PlcAbsractFactory))
- //{
- // builder.RegisterType(type);
- //}
- #endregion
-
-
- if (!typeof(Delegate).IsAssignableFrom(type)) //不注入委托事件
- {
- builder.RegisterType(type).SingleInstance();
- }
- }
- }
-
- ///
- /// 自动注入自定义类,设置生命周期为每次解析返回新实例
- ///
- ///
- ///
- private static void RegisterTypeTransient(ContainerBuilder builder, Assembly assembly)
- {
- var types = assembly.GetTypes()
- .Where(t => t.IsClass && !t.IsAbstract && !t.IsGenericType)
- .ToList();
-
- foreach (var type in types)
- {
- var interfaces = type.GetInterfaces();
- var baseType = type.BaseType;
-
- if (!typeof(Delegate).IsAssignableFrom(type))
- {
- builder.RegisterType(type).AsSelf().InstancePerDependency();
- }
- }
- }
- }
-}
diff --git a/SlnMesnac.Ioc/SlnMesnac.Ioc.csproj b/SlnMesnac.Ioc/SlnMesnac.Ioc.csproj
deleted file mode 100644
index f9ed572..0000000
--- a/SlnMesnac.Ioc/SlnMesnac.Ioc.csproj
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- net6.0
- enable
- enable
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SlnMesnac.Serilog/SerilogExtensions.cs b/SlnMesnac.Serilog/SerilogExtensions.cs
index f332ac4..87a5374 100644
--- a/SlnMesnac.Serilog/SerilogExtensions.cs
+++ b/SlnMesnac.Serilog/SerilogExtensions.cs
@@ -35,13 +35,10 @@ namespace SlnMesnac.Serilog
///
public static class SerilogExtensions
{
- public static IApplicationBuilder UseSerilogExtensions(this IApplicationBuilder app)
+ public static void UseSerilogExtensions(this IServiceProvider service)
{
- //启用Serilog中间件
- app.UseSerilogRequestLogging();
-
#region 通过配置文件读取日志存放位置
- var appConfig = app.ApplicationServices.GetService();
+ var appConfig = service.GetService();
var logPath = $"{appConfig.logPath}/Logs/";
#endregion
@@ -67,10 +64,6 @@ namespace SlnMesnac.Serilog
.Filter.ByIncludingOnly(logEvent => logEvent.Properties.ContainsKey("Module") && logEvent.Properties["Module"].ToString().Contains("Error"))
.WriteTo.File(Path.Combine($"{logPath}/Error/", "Error.log"), rollingInterval: RollingInterval.Day))
.CreateLogger();
-
- app.UseSerilogRequestLogging();
-
- return app;
}
}
}
diff --git a/SlnMesnac.WPF/App.xaml b/SlnMesnac.WPF/App.xaml
index 48f0a12..05764b6 100644
--- a/SlnMesnac.WPF/App.xaml
+++ b/SlnMesnac.WPF/App.xaml
@@ -1,14 +1,36 @@
+ xmlns:local="clr-namespace:SlnMesnac.WPF">
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SlnMesnac.WPF/App.xaml.cs b/SlnMesnac.WPF/App.xaml.cs
index ec3de3a..3040fed 100644
--- a/SlnMesnac.WPF/App.xaml.cs
+++ b/SlnMesnac.WPF/App.xaml.cs
@@ -1,15 +1,16 @@
using Lierda.WPFHelper;
-using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
-using Microsoft.Extensions.Hosting;
using Serilog;
using SlnMesnac.Config;
using System;
using System.Windows;
-using Autofac.Extensions.DependencyInjection;
-using SlnMesnac.Plc;
-using System.Collections.Generic;
-using SlnMesnac.Rfid;
+using Microsoft.Extensions.Configuration;
+using SlnMesnac.Extensions;
+using SlnMesnac.Serilog;
+using System.Reflection;
+using TouchSocket.Sockets;
+using SlnMesnac.WPF.Attribute;
+using SlnMesnac.WPF.Page.Login;
namespace SlnMesnac.WPF
{
@@ -22,9 +23,15 @@ namespace SlnMesnac.WPF
private LierdaCracker cracker = new LierdaCracker();
public static IServiceProvider? ServiceProvider = null;
+ public new static App Current => (App)Application.Current;
+
// Startup事件
protected override async void OnStartup(StartupEventArgs e)
{
+
+ this.DispatcherUnhandledException += App_DispatcherUnhandledException; //全局异常处理
+
+ #region 进程判断,避免重复开启
bool ret;
mutex = new System.Threading.Mutex(true, System.Diagnostics.Process.GetCurrentProcess().ProcessName, out ret);
if (!ret)
@@ -32,35 +39,96 @@ namespace SlnMesnac.WPF
MessageBox.Show("应用程序已开启,禁止重复运行");
Environment.Exit(0);
}
+ #endregion
cracker.Cracker(100); //设置GC回收间隔
base.OnStartup(e);
- var host = CreateHostBuilder(e.Args).Build();//生成宿主。
- ServiceProvider = host.Services;
+ // 设置ServiceCollection
+ var services = new ServiceCollection();
+ ConfigureServices(services); // 配置服务
+
+ // 创建ServiceProvider
+ ServiceProvider = services.BuildServiceProvider();
- await host.StartAsync();
+ // 配置Serilog和其他扩展
+ ServiceProvider.UseSerilogExtensions();
- var appConfig = host.Services.GetService();
- var logPath = $"{appConfig.logPath}/Logs/{DateTime.UtcNow:yyyy-MM-dd}/";
- Log.Information($"系统初始化完成,日志存放路径:{appConfig.logPath}");
+ var appConfig = ServiceProvider.GetService();
+ Log.Information($"系统初始化完成,日志存放路径:{appConfig?.logPath}");
+
+ var loginWindow = ServiceProvider.GetRequiredService();
+ loginWindow.WindowStartupLocation = WindowStartupLocation.CenterScreen;
+ loginWindow.Show();
}
+
///
- /// CreateHostBuilder
+ /// ConfigureServices
///
- ///
- ///
- public static IHostBuilder CreateHostBuilder(string[] args) =>
- Host.CreateDefaultBuilder(args)
- .UseSerilog()
- .UseServiceProviderFactory(new AutofacServiceProviderFactory())
- .ConfigureWebHostDefaults(webBuilder =>
- {
- webBuilder.UseStartup();
- });
+ ///
+ private void ConfigureServices(IServiceCollection services)
+ {
+ // 注册AppConfig
+ services.AddSingleton(provider =>
+ {
+ var configurationBuilder = new ConfigurationBuilder()
+ .SetBasePath(AppDomain.CurrentDomain.BaseDirectory)
+ .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true);
+ IConfiguration configuration = configurationBuilder.Build();
+ var ap = configuration.GetSection("AppConfig").Get();
+ return ap;
+ });
+
+ services.AddSingleton(typeof(SerilogHelper));
+
+ Assembly[] assemblies = {
+ Assembly.LoadFrom("SlnMesnac.Repository.dll"),
+ Assembly.LoadFrom("SlnMesnac.Plc.dll"),
+ Assembly.LoadFrom("SlnMesnac.Rfid.dll"),
+ Assembly.LoadFrom("SlnMesnac.Common.dll"),
+ Assembly.LoadFrom("SlnMesnac.TouchSocket.dll"),
+ Assembly.LoadFrom("SlnMesnac.Business.dll"),
+ Assembly.LoadFrom("SlnMesnac.Generate.dll")
+ };
+
+ services.Scan(scan => scan.FromAssemblies(assemblies)
+ .AddClasses()
+ .AsImplementedInterfaces()
+ .AsSelf()
+ .WithTransientLifetime());
+ services.AddSingleton(typeof(TcpService));
+ services.AddLogging(x => x.AddSerilog());
+
+ services.Scan(scan => scan
+ .FromAssemblyOf()
+ .AddClasses(classes => classes.WithAttribute()).AsSelf().WithSingletonLifetime());
+ services.Scan(scan => scan
+ .FromAssemblyOf()
+ .AddClasses(classes => classes.WithAttribute()).AsSelf().WithTransientLifetime());
+
+
+ // 注册ORM
+ services.AddSqlSugarSetup();
+
+ // 注册PLC工厂
+ //services.AddPlcFactorySetup();
+
+ //services.AddJob();
+
+ // 注册 EventBus 服务
+ //services.AddEventBus(builder =>
+ //{
+ // // 注册 ToDo 事件订阅者
+ // builder.AddSubscriber();
+ //});
+
+
+
+
+ }
// Exit事件
protected override void OnExit(ExitEventArgs e)
@@ -72,6 +140,17 @@ namespace SlnMesnac.WPF
// ...
}
+ private void App_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
+ {
+ // 处理异常
+ var info = e.Exception;
+ MessageBox.Show(e.Exception.Message);
+ Log.Error($"全局异常:{e.Exception.Message}", e.Exception);
+
+ // 防止默认的崩溃行为
+ e.Handled = true;
+ }
+
}
}
diff --git a/SlnMesnac.WPF/Attribute/RegisterAsSingletonAttribute.cs b/SlnMesnac.WPF/Attribute/RegisterAsSingletonAttribute.cs
new file mode 100644
index 0000000..86eadf3
--- /dev/null
+++ b/SlnMesnac.WPF/Attribute/RegisterAsSingletonAttribute.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace SlnMesnac.WPF.Attribute
+{
+ public class RegisterAsSingletonAttribute:System.Attribute
+ {
+ }
+}
diff --git a/SlnMesnac.WPF/Attribute/RegisterAsTransientAttribute.cs b/SlnMesnac.WPF/Attribute/RegisterAsTransientAttribute.cs
new file mode 100644
index 0000000..037555d
--- /dev/null
+++ b/SlnMesnac.WPF/Attribute/RegisterAsTransientAttribute.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace SlnMesnac.WPF.Attribute
+{
+ public class RegisterAsTransientAttribute:System.Attribute
+ {
+ }
+}
diff --git a/SlnMesnac.WPF/Attribute/RequirePermissionAttribute.cs b/SlnMesnac.WPF/Attribute/RequirePermissionAttribute.cs
new file mode 100644
index 0000000..aaefe90
--- /dev/null
+++ b/SlnMesnac.WPF/Attribute/RequirePermissionAttribute.cs
@@ -0,0 +1,109 @@
+using Microsoft.Extensions.DependencyInjection;
+using Rougamo;
+using Rougamo.Context;
+using SlnMesnac.WPF.Page.Loading;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Threading;
+
+#region << 版 本 注 释 >>
+/*--------------------------------------------------------------------
+* 版权所有 (c) 2024 WenJY 保留所有权利。
+* CLR版本:4.0.30319.42000
+* 机器名称:T14-GEN3-7895
+* 命名空间:SlnMesnac.WPF.Attribute
+* 唯一标识:fff40cb6-18aa-47e0-917c-1fa653e6f978
+*
+* 创建者:WenJY
+* 电子邮箱:
+* 创建时间:2024-12-30 10:19:41
+* 版本:V1.0.0
+* 描述:
+*
+*--------------------------------------------------------------------
+* 修改人:
+* 时间:
+* 修改说明:
+*
+* 版本:V1.0.0
+*--------------------------------------------------------------------*/
+#endregion << 版 本 注 释 >>
+namespace SlnMesnac.WPF.Attribute
+{
+ ///
+ /// 权限过滤
+ ///
+ public class RequirePermissionAttribute : MoAttribute
+ {
+ private LoadingWindow loadingWindow;
+ private string _permissionName;
+
+ public RequirePermissionAttribute(string permissionName)
+ {
+ _permissionName = permissionName;
+
+
+ }
+ public override void OnEntry(MethodContext context)
+ {
+ Thread newWindowThread = new Thread(new ThreadStart(ThreadStartingPoint));
+ newWindowThread.SetApartmentState(ApartmentState.STA); // 设置为 STA 模式
+ newWindowThread.IsBackground = true; // 设置为后台线程
+ newWindowThread.Start();
+
+ bool hasPermission = CheckPermission(_permissionName);
+
+ if (!hasPermission)
+ {
+ // 如果用户没有权限,抛出异常或采取其他措施
+ throw new UnauthorizedAccessException("User does not have the required permission.");
+ }
+
+ base.OnEntry(context);
+ }
+
+
+ public override void OnExit(MethodContext context)
+ {
+ Thread.Sleep(200);
+ if(loadingWindow != null)
+ {
+ loadingWindow.Dispatcher.Invoke(new Action(() =>
+ {
+ loadingWindow.Close(); // 关闭窗口
+ }));
+ }
+
+
+ base.OnExit(context);
+ }
+
+ ///
+ /// 判断权限
+ ///
+ ///
+ ///
+ private bool CheckPermission(string permissionName)
+ {
+ return true;
+ }
+
+ private void ThreadStartingPoint()
+ {
+ Dispatcher.CurrentDispatcher.Invoke(new Action(() =>
+ {
+ loadingWindow = App.ServiceProvider.GetService();
+ loadingWindow.WindowStartupLocation = WindowStartupLocation.CenterScreen;
+ loadingWindow.Topmost = true;
+ loadingWindow.Show();
+ }));
+
+ Dispatcher.Run();
+ }
+ }
+}
diff --git a/SlnMesnac.WPF/FodyWeavers.xml b/SlnMesnac.WPF/FodyWeavers.xml
new file mode 100644
index 0000000..a6a2edf
--- /dev/null
+++ b/SlnMesnac.WPF/FodyWeavers.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/SlnMesnac.WPF/MainWindow.xaml b/SlnMesnac.WPF/MainWindow.xaml
index 150870a..95bca2c 100644
--- a/SlnMesnac.WPF/MainWindow.xaml
+++ b/SlnMesnac.WPF/MainWindow.xaml
@@ -61,11 +61,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/SlnMesnac.WPF/MainWindow.xaml.cs b/SlnMesnac.WPF/MainWindow.xaml.cs
index 2139374..0e790b5 100644
--- a/SlnMesnac.WPF/MainWindow.xaml.cs
+++ b/SlnMesnac.WPF/MainWindow.xaml.cs
@@ -1,4 +1,5 @@
-using SlnMesnac.WPF.ViewModel;
+using SlnMesnac.WPF.Attribute;
+using SlnMesnac.WPF.ViewModel;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -19,13 +20,14 @@ namespace SlnMesnac.WPF
///
/// Interaction logic for MainWindow.xaml
///
+ [RegisterAsSingletonAttribute]
public partial class MainWindow : Window
{
- public MainWindow()
+ public MainWindow(MainWindowViewModel mainWindowViewModel)
{
InitializeComponent();
- this.DataContext = new MainWindowViewModel();
+ this.DataContext = mainWindowViewModel;
}
}
}
diff --git a/SlnMesnac.WPF/Page/Generate/GenerateControl.xaml b/SlnMesnac.WPF/Page/Generate/GenerateControl.xaml
index a0cb758..1c8cbe5 100644
--- a/SlnMesnac.WPF/Page/Generate/GenerateControl.xaml
+++ b/SlnMesnac.WPF/Page/Generate/GenerateControl.xaml
@@ -24,7 +24,7 @@
-
+
diff --git a/SlnMesnac.WPF/Page/Generate/GenerateControl.xaml.cs b/SlnMesnac.WPF/Page/Generate/GenerateControl.xaml.cs
index fd5a96e..232564e 100644
--- a/SlnMesnac.WPF/Page/Generate/GenerateControl.xaml.cs
+++ b/SlnMesnac.WPF/Page/Generate/GenerateControl.xaml.cs
@@ -1,4 +1,5 @@
-using SlnMesnac.WPF.ViewModel.Generate;
+using SlnMesnac.WPF.Attribute;
+using SlnMesnac.WPF.ViewModel.Generate;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -19,12 +20,13 @@ namespace SlnMesnac.WPF.Page.Generate
///
/// GenerateControl.xaml 的交互逻辑
///
+ [RegisterAsSingletonAttribute]
public partial class GenerateControl : UserControl
{
- public GenerateControl()
+ public GenerateControl(GenerateControlViewModel generateControlViewModel)
{
InitializeComponent();
- this.DataContext = new GenerateControlViewModel();
+ this.DataContext = generateControlViewModel;
}
}
}
diff --git a/SlnMesnac.WPF/Page/Loading/LoadingWindow.xaml b/SlnMesnac.WPF/Page/Loading/LoadingWindow.xaml
new file mode 100644
index 0000000..de2ef38
--- /dev/null
+++ b/SlnMesnac.WPF/Page/Loading/LoadingWindow.xaml
@@ -0,0 +1,19 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/SlnMesnac.WPF/Page/Loading/LoadingWindow.xaml.cs b/SlnMesnac.WPF/Page/Loading/LoadingWindow.xaml.cs
new file mode 100644
index 0000000..3b30af0
--- /dev/null
+++ b/SlnMesnac.WPF/Page/Loading/LoadingWindow.xaml.cs
@@ -0,0 +1,26 @@
+using SlnMesnac.WPF.Attribute;
+using System;
+using System.Windows;
+using System.Windows.Threading;
+
+namespace SlnMesnac.WPF.Page.Loading
+{
+ ///
+ /// LoadingWindow.xaml 的交互逻辑
+ ///
+ [RegisterAsTransientAttribute]
+ public partial class LoadingWindow : Window
+ {
+ public LoadingWindow()
+ {
+ InitializeComponent();
+ }
+
+ protected override void OnClosed(EventArgs e)
+ {
+ base.OnClosed(e);
+ // 停止 Dispatcher 消息循环
+ Dispatcher.BeginInvokeShutdown(DispatcherPriority.Background);
+ }
+ }
+}
diff --git a/SlnMesnac.WPF/Page/Login/LoginWindow.xaml b/SlnMesnac.WPF/Page/Login/LoginWindow.xaml
new file mode 100644
index 0000000..ad8efc4
--- /dev/null
+++ b/SlnMesnac.WPF/Page/Login/LoginWindow.xaml
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SlnMesnac.WPF/Page/Login/LoginWindow.xaml.cs b/SlnMesnac.WPF/Page/Login/LoginWindow.xaml.cs
new file mode 100644
index 0000000..e1823c0
--- /dev/null
+++ b/SlnMesnac.WPF/Page/Login/LoginWindow.xaml.cs
@@ -0,0 +1,54 @@
+using SlnMesnac.WPF.Attribute;
+using SlnMesnac.WPF.ViewModel.Login;
+using System;
+using System.Windows;
+
+namespace SlnMesnac.WPF.Page.Login
+{
+ ///
+ /// LoginWindow.xaml 的交互逻辑
+ ///
+ [RegisterAsSingletonAttribute]
+ public partial class LoginWindow : Window
+ {
+ private readonly LoginViewModel _loginViewModel;
+ public LoginWindow(LoginViewModel loginViewModel)
+ {
+ _loginViewModel = loginViewModel;
+ InitializeComponent();
+ this.DataContext = _loginViewModel;
+ }
+
+ private async void LoginBtn_Click(object sender, RoutedEventArgs e)
+ {
+ string userName = UserNameStr.Text.ToString();
+ string password = PasswordStr.Password;
+
+ //if (string.IsNullOrEmpty(userName))
+ //{
+ // MessageBox.Show("用户名不允许为空");
+ // return;
+ //}
+
+ //if (string.IsNullOrEmpty(password))
+ //{
+ // MessageBox.Show("密码不允许为空");
+ // return;
+ //}
+
+ bool res = _loginViewModel.Login(userName,password);
+ if (res)
+ {
+ this.Closing += MainWindow_Closing;
+ this.Close();
+ }
+ }
+
+ private void MainWindow_Closing(object sender, System.ComponentModel.CancelEventArgs e)
+ {
+ this.Closing -= MainWindow_Closing; // 防止多次绑定
+ e.Cancel = true;
+ this.Visibility = Visibility.Hidden; // 隐藏窗口
+ }
+ }
+}
diff --git a/SlnMesnac.WPF/SlnMesnac.WPF.csproj b/SlnMesnac.WPF/SlnMesnac.WPF.csproj
index c218412..f7ba3d3 100644
--- a/SlnMesnac.WPF/SlnMesnac.WPF.csproj
+++ b/SlnMesnac.WPF/SlnMesnac.WPF.csproj
@@ -1,15 +1,18 @@
-
- Exe
- net6.0-windows
- enable
- true
-
+
+ Exe
+ net6.0-windows
+
+ enable
+ true
+
+
+
@@ -36,15 +39,20 @@
-
-
+
+
+
+
+
+
+
diff --git a/SlnMesnac.WPF/Startup.cs b/SlnMesnac.WPF/Startup.cs
deleted file mode 100644
index e4251dc..0000000
--- a/SlnMesnac.WPF/Startup.cs
+++ /dev/null
@@ -1,88 +0,0 @@
-using Microsoft.AspNetCore.Builder;
-using Microsoft.AspNetCore.Hosting;
-using Microsoft.Extensions.DependencyInjection;
-using Microsoft.Extensions.Hosting;
-using SlnMesnac.Config;
-using SlnMesnac.Repository;
-using SlnMesnac.Serilog;
-using System;
-using Autofac;
-using Microsoft.Extensions.Configuration;
-using SlnMesnac.Rfid;
-using SlnMesnac.Ioc;
-using SlnMesnac.Plc;
-using SlnMesnac.Extensions;
-using SlnMesnac.TouchSocket;
-
-namespace SlnMesnac.WPF
-{
- ///
- ///
- ///
- public class Startup
- {
- ///
- /// This method gets called by the runtime. Use this method to add services to the container.
- ///
- ///
- [Obsolete]
- public void ConfigureServices(IServiceCollection services)
- {
- services.AddControllers();
-
- //注册AppConfig
- services.AddSingleton(provider =>
- {
- var configuration = provider.GetService();
- return configuration.GetSection("AppConfig").Get();
-
- });
-
- //注册ORM
- services.AddSqlSugarSetup();
-
- //注册PLC工厂
- services.AddPlcFactorySetup();
-
- //注册RFID工厂
- services.AddRfidFactorySetup();
- }
-
- ///
- /// AutoFac自动注入
- ///
- ///
- public void ConfigureContainer(ContainerBuilder builder)
- {
- DependencyConfigurator.Configure(builder);
- }
-
- ///
- /// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
- ///
- ///
- ///
- public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
- {
- if (env.IsDevelopment())
- {
- app.UseDeveloperExceptionPage();
- }
-
- //启用Serilog中间件
- app.UseSerilogExtensions();
-
- app.UseTouchSocketExtensions();
-
- app.UseRouting();
-
- app.UseAuthorization();
-
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapControllers();
- });
-
- }
- }
-}
\ No newline at end of file
diff --git a/SlnMesnac.WPF/Templates/gif/loading.gif b/SlnMesnac.WPF/Templates/gif/loading.gif
new file mode 100644
index 0000000..ba81ff0
Binary files /dev/null and b/SlnMesnac.WPF/Templates/gif/loading.gif differ
diff --git a/SlnMesnac.WPF/Templates/image/login-background.jpg b/SlnMesnac.WPF/Templates/image/login-background.jpg
new file mode 100644
index 0000000..96303ad
Binary files /dev/null and b/SlnMesnac.WPF/Templates/image/login-background.jpg differ
diff --git a/SlnMesnac.WPF/ViewModel/Base/BaseViewModel.cs b/SlnMesnac.WPF/ViewModel/Base/BaseViewModel.cs
new file mode 100644
index 0000000..a850bd6
--- /dev/null
+++ b/SlnMesnac.WPF/ViewModel/Base/BaseViewModel.cs
@@ -0,0 +1,59 @@
+using CommunityToolkit.Mvvm.ComponentModel;
+using CommunityToolkit.Mvvm.Input;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Reflection;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Threading.Tasks;
+
+namespace SlnMesnac.WPF.ViewModel.Base
+{
+ public class BaseViewModel : ObservableObject
+ {
+
+ public string EscapeUnicode(string input)
+ {
+ return Regex.Replace(input, "([0-9a-fA-F]+);", match =>
+ {
+ string hexValue = match.Groups[1].Value;
+ return $"\\u{hexValue}";
+ });
+ }
+
+ ///
+ /// 获取当前类中的方法
+ ///
+ ///
+ public Dictionary GetRelayCommandsAsDictionary()
+ {
+ var commandDict = new Dictionary();
+ var properties = this.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance);
+ foreach (var property in properties)
+ {
+ if (property.PropertyType == typeof(IRelayCommand))
+ {
+ var command = property.GetValue(this) as IRelayCommand;
+ if (command != null)
+ {
+ commandDict[property.Name] = command;
+ }
+ }
+ }
+ var fields = this.GetType().GetFields(BindingFlags.Public | BindingFlags.Instance);
+ foreach (var field in fields)
+ {
+ if (field.FieldType == typeof(IRelayCommand))
+ {
+ var command = field.GetValue(this) as IRelayCommand;
+ if (command != null)
+ {
+ commandDict[field.Name] = command;
+ }
+ }
+ }
+ return commandDict;
+ }
+ }
+}
diff --git a/SlnMesnac.WPF/ViewModel/Base/BaseViewModelAsPageQuery.cs b/SlnMesnac.WPF/ViewModel/Base/BaseViewModelAsPageQuery.cs
new file mode 100644
index 0000000..56d4b12
--- /dev/null
+++ b/SlnMesnac.WPF/ViewModel/Base/BaseViewModelAsPageQuery.cs
@@ -0,0 +1,75 @@
+
+using CommunityToolkit.Mvvm.ComponentModel;
+using CommunityToolkit.Mvvm.Input;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using TouchSocket.Core;
+
+namespace SlnMesnac.WPF.ViewModel.Base
+{
+ ///
+ /// ViewModel抽象类:分页
+ ///
+ public abstract partial class BaseViewModelAsPageQuery : ObservableObject
+ {
+ ///
+ /// 当前页码
+ ///
+ [ObservableProperty]
+ public int currentPage = 1;
+
+ ///
+ /// 每页显示的行数
+ ///
+ [ObservableProperty]
+ public int pageSize = 10;
+
+ ///
+ /// 总条数
+ ///
+ public int totalCount = 0;
+
+ ///
+ /// 总页数
+ ///
+ [ObservableProperty]
+ public int totalPages = 0;
+
+ ///
+ /// 首页
+ ///
+ [RelayCommand]
+ private void FirstPage() => ChangePage(1);
+
+ ///
+ /// 上一页
+ ///
+ [RelayCommand]
+ private void PreviousPage() => ChangePage(CurrentPage - 1);
+
+ ///
+ /// 下一页
+ ///
+ [RelayCommand]
+ private void NextPage() => ChangePage(CurrentPage + 1);
+
+ ///
+ /// 尾页
+ ///
+ [RelayCommand]
+ private void LastPage() => ChangePage(TotalPages);
+
+ private void ChangePage(int newPage)
+ {
+ if (newPage >= 1 && newPage <= TotalPages)
+ {
+ CurrentPage = newPage;
+ Query();
+ }
+ }
+ public abstract void Query();
+ }
+}
diff --git a/SlnMesnac.WPF/ViewModel/Generate/GenerateControlViewModel.cs b/SlnMesnac.WPF/ViewModel/Generate/GenerateControlViewModel.cs
index 9a41078..83811b1 100644
--- a/SlnMesnac.WPF/ViewModel/Generate/GenerateControlViewModel.cs
+++ b/SlnMesnac.WPF/ViewModel/Generate/GenerateControlViewModel.cs
@@ -4,6 +4,7 @@ using Microsoft.Extensions.DependencyInjection;
using Microsoft.WindowsAPICodePack.Dialogs;
using SlnMesnac.Config;
using SlnMesnac.Generate;
+using SlnMesnac.WPF.Attribute;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -36,28 +37,31 @@ using System.Windows;
#endregion << 版 本 注 释 >>
namespace SlnMesnac.WPF.ViewModel.Generate
{
- internal partial class GenerateControlViewModel : ObservableObject
+ [RegisterAsSingleton]
+ public class GenerateControlViewModel : ObservableObject
{
private readonly AppConfig _appConfig;
private readonly GenerateCode _generateCode;
- public GenerateControlViewModel()
+ public GenerateControlViewModel(AppConfig appConfig, GenerateCode generateCode)
{
- _appConfig = App.ServiceProvider.GetService();
+ _appConfig = appConfig;
+ _generateCode = generateCode;
- _generateCode = App.ServiceProvider.GetService();
-
- var configIds = _appConfig.sqlConfig.Select(x=>x.configId).ToList();
+ var configIds = _appConfig.sqlConfig.Select(x => x.configId).ToList();
// 初始化选项列表
Options = new ObservableCollection();
- foreach(var configId in configIds)
+ foreach (var configId in configIds)
{
Options.Add(configId);
}
+ QuerySearchCommand = new RelayCommand(Query);
+
+ CreateCodeCommand = new RelayCommand(CreateCode);
}
#region 参数定义
@@ -74,7 +78,7 @@ namespace SlnMesnac.WPF.ViewModel.Generate
get => _selectedOption;
set => SetProperty(ref _selectedOption, value);
}
-
+
private ObservableCollection tablesDataGrid;
public ObservableCollection TablesDataGrid
@@ -85,13 +89,17 @@ namespace SlnMesnac.WPF.ViewModel.Generate
}
#endregion
+ #region 事件定义
+ public RelayCommand QuerySearchCommand { get; set; }
+
+ public RelayCommand CreateCodeCommand { get; set; }
+ #endregion
///
/// 查询事件
///
///
- [RelayCommand]
- private void QuerySearch(string search)
+ private void Query(string search)
{
var configId = _selectedOption;
@@ -101,18 +109,17 @@ namespace SlnMesnac.WPF.ViewModel.Generate
var scope = db.AsTenant().GetConnectionScope(configId);
List tables = scope.DbMaintenance.GetTableInfoList(false);
-
- if(tables != null)
+
+ if (tables != null)
{
TablesDataGrid = new ObservableCollection();
tables.ForEach(t => { TablesDataGrid.Add(t); });
}
}
-
+
}
- [RelayCommand]
private void CreateCode(string tableName)
{
var info = tableName;
@@ -137,7 +144,8 @@ namespace SlnMesnac.WPF.ViewModel.Generate
}
}
}
- }catch(Exception ex)
+ }
+ catch (Exception ex)
{
MessageBox.Show($"{tableName}代码生成失败:{ex.Message}");
}
diff --git a/SlnMesnac.WPF/ViewModel/Login/LoginViewModel.cs b/SlnMesnac.WPF/ViewModel/Login/LoginViewModel.cs
new file mode 100644
index 0000000..daf4805
--- /dev/null
+++ b/SlnMesnac.WPF/ViewModel/Login/LoginViewModel.cs
@@ -0,0 +1,52 @@
+using CommunityToolkit.Mvvm.ComponentModel;
+using Microsoft.Extensions.DependencyInjection;
+using SlnMesnac.Config;
+using SlnMesnac.WPF.Attribute;
+using System;
+using System.Windows;
+
+namespace SlnMesnac.WPF.ViewModel.Login
+{
+ [RegisterAsSingleton]
+ public partial class LoginViewModel: ObservableObject
+ {
+ private readonly AppConfig _appConfig;
+ [ObservableProperty]
+ public string systemTitle = string.Empty;
+
+ [ObservableProperty]
+ public string userName = string.Empty;
+
+ public LoginViewModel(AppConfig appConfig)
+ {
+ _appConfig = appConfig;
+ SystemTitle = "系统测试";
+ }
+
+
+ [RequirePermission("Login")]
+ public bool Login(string userName,string password)
+ {
+ bool res = true;
+ try
+ {
+ //res = _usersBusiness.Verify(userName, password);
+ if (res)
+ {
+ App.Current.Dispatcher.Invoke(() =>
+ {
+ MainWindow mainWindow = App.ServiceProvider.GetService();
+ App.Current.MainWindow = mainWindow;
+ mainWindow.Show();
+
+ });
+ }
+ }
+ catch (Exception ex)
+ {
+ MessageBox.Show($"登录失败:{ex.Message}");
+ }
+ return res;
+ }
+ }
+}
diff --git a/SlnMesnac.WPF/ViewModel/MainWindowViewModel.cs b/SlnMesnac.WPF/ViewModel/MainWindowViewModel.cs
index e2207a7..7390988 100644
--- a/SlnMesnac.WPF/ViewModel/MainWindowViewModel.cs
+++ b/SlnMesnac.WPF/ViewModel/MainWindowViewModel.cs
@@ -3,71 +3,62 @@ using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using Microsoft.Extensions.DependencyInjection;
using SlnMesnac.Serilog;
+using SlnMesnac.WPF.Attribute;
using SlnMesnac.WPF.Page.Generate;
+using SlnMesnac.WPF.ViewModel.Base;
using System;
using System.Windows;
namespace SlnMesnac.WPF.ViewModel
{
- public partial class MainWindowViewModel: ObservableObject
+ [RegisterAsSingletonAttribute]
+ public partial class MainWindowViewModel : BaseViewModel
{
public readonly SerilogHelper _logger;
-
- //代码生成
- private readonly GenerateControl generateControl = new GenerateControl();
+ private readonly GenerateControl _generateControl;
#region 参数定义
///
/// PLC设备状态
///
- private int _PlcStatus = 0;
- public int PlcStatus
- {
- get => _PlcStatus;
- set => SetProperty(ref _PlcStatus, value);
- }
+ [ObservableProperty]
+ private int plcStatus = 0;
+
///
- /// 箱壳扫码器状态
+ /// 登录人员
///
- private int _ShellScannerStatus = 0;
- public int ShellScannerStatus
- {
- get => _ShellScannerStatus;
- set => SetProperty(ref _ShellScannerStatus, value);
- }
+ [ObservableProperty]
+ private string otherInfo;
///
- /// 内胆扫码器状态
+ /// 系统标题
///
- private int _BoldScannerStatus = 0;
- public int BoldScannerStatus
- {
- get => _BoldScannerStatus;
- set => SetProperty(ref _BoldScannerStatus, value);
- }
+ [ObservableProperty]
+ private string systemTitle = string.Empty;
- public System.Windows.Controls.UserControl _content;
+ [ObservableProperty]
+ public System.Windows.Controls.UserControl userContent = new System.Windows.Controls.UserControl();
- public System.Windows.Controls.UserControl UserContent
- {
- get => _content;
- set => SetProperty(ref _content, value);
- }
- #endregion
+ ///
+ /// 箱壳扫码器状态
+ ///
+ [ObservableProperty]
+ private int _shellScannerStatus = 0;
- #region 事件定义
///
- /// 打开系统键盘
+ /// 内胆扫码器状态
///
- public RelayCommand OpenSystemKeyboardCommand { get; set; }
+ [ObservableProperty]
+ private int _boldScannerStatus = 0;
#endregion
- public MainWindowViewModel()
- {
- _logger = App.ServiceProvider.GetService();
+ public MainWindowViewModel(SerilogHelper logger,GenerateControl generateControl)
+ {
+ _logger = logger;
+ _generateControl = generateControl;
}
@@ -89,7 +80,7 @@ namespace SlnMesnac.WPF.ViewModel
Application.Current.Shutdown();
break;
case "Generate":
- UserContent = generateControl;
+ UserContent = _generateControl;
break;
// 还原 或者 最大化当前窗口
case "Normal":
diff --git a/SlnMesnac.sln b/SlnMesnac.sln
index b713cfb..83da5e6 100644
--- a/SlnMesnac.sln
+++ b/SlnMesnac.sln
@@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.33502.453
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlnMesnac", "SlnMesnac\SlnMesnac.csproj", "{19445879-B3F3-4C76-A670-EFAE9E25BAB4}"
-EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlnMesnac.Common", "SlnMesnac.Common\SlnMesnac.Common.csproj", "{BB71F26A-7007-423E-83E9-7A3BAC25E934}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlnMesnac.Config", "SlnMesnac.Config\SlnMesnac.Config.csproj", "{6EF7F087-7149-4689-885C-E0D05E1A9AA8}"
@@ -29,13 +27,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlnMesnac.Mqtt", "SlnMesnac
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlnMesnac.Rfid", "SlnMesnac.Rfid\SlnMesnac.Rfid.csproj", "{40D23A4B-8372-4145-936C-08AE63C6D1F9}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlnMesnac.Ioc", "SlnMesnac.Ioc\SlnMesnac.Ioc.csproj", "{30A3F86B-774E-4153-9A00-FD3173C710EB}"
-EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlnMesnac.Generate", "SlnMesnac.Generate\SlnMesnac.Generate.csproj", "{00FC9358-2381-4C1B-BD45-6D31DD1DB7D3}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SlnMesnac.Extensions", "SlnMesnac.Extensions\SlnMesnac.Extensions.csproj", "{6D929802-24AA-42A7-92C5-303C3D59A990}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlnMesnac.Extensions", "SlnMesnac.Extensions\SlnMesnac.Extensions.csproj", "{6D929802-24AA-42A7-92C5-303C3D59A990}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SlnMesnac.Redis", "SlnMesnac.Redis\SlnMesnac.Redis.csproj", "{0E041719-E755-43CD-8A0E-DF62E0B2E463}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlnMesnac.Redis", "SlnMesnac.Redis\SlnMesnac.Redis.csproj", "{0E041719-E755-43CD-8A0E-DF62E0B2E463}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -43,10 +39,6 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {19445879-B3F3-4C76-A670-EFAE9E25BAB4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {19445879-B3F3-4C76-A670-EFAE9E25BAB4}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {19445879-B3F3-4C76-A670-EFAE9E25BAB4}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {19445879-B3F3-4C76-A670-EFAE9E25BAB4}.Release|Any CPU.Build.0 = Release|Any CPU
{BB71F26A-7007-423E-83E9-7A3BAC25E934}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BB71F26A-7007-423E-83E9-7A3BAC25E934}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BB71F26A-7007-423E-83E9-7A3BAC25E934}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -95,10 +87,6 @@ Global
{40D23A4B-8372-4145-936C-08AE63C6D1F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{40D23A4B-8372-4145-936C-08AE63C6D1F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{40D23A4B-8372-4145-936C-08AE63C6D1F9}.Release|Any CPU.Build.0 = Release|Any CPU
- {30A3F86B-774E-4153-9A00-FD3173C710EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {30A3F86B-774E-4153-9A00-FD3173C710EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {30A3F86B-774E-4153-9A00-FD3173C710EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {30A3F86B-774E-4153-9A00-FD3173C710EB}.Release|Any CPU.Build.0 = Release|Any CPU
{00FC9358-2381-4C1B-BD45-6D31DD1DB7D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{00FC9358-2381-4C1B-BD45-6D31DD1DB7D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{00FC9358-2381-4C1B-BD45-6D31DD1DB7D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
diff --git a/SlnMesnac/Controllers/BaseMaterialInfoController.cs b/SlnMesnac/Controllers/BaseMaterialInfoController.cs
deleted file mode 100644
index 1f016b0..0000000
--- a/SlnMesnac/Controllers/BaseMaterialInfoController.cs
+++ /dev/null
@@ -1,91 +0,0 @@
-using Microsoft.AspNetCore.Http;
-using Microsoft.AspNetCore.Mvc;
-using SlnMesnac.Model.domain;
-using SlnMesnac.Repository.service;
-using SlnMesnac.Serilog;
-
-namespace SlnMesnac.Controllers
-{
- ///
- /// 物料信息
- ///
- [Route("api/[controller]")]
- [ApiController]
- public class BaseMaterialInfoController
- {
- public readonly SerilogHelper _logger;
-
- private IBaseMaterialService _service;
-
- ///
- ///
- ///
- ///
- ///
- public BaseMaterialInfoController(SerilogHelper logger, IBaseMaterialService service)
- {
- _logger = logger;
- _service = service;
- }
-
- ///
- /// 获取物料信息
- ///
- ///
- [HttpGet]
- public IEnumerable Get()
- {
- IEnumerable materialInfos = null;
- try
- {
- materialInfos = _service.GetMaterialInfos();
- }
- catch (Exception ex)
- {
- _logger.Error($"获取物料信息接口调用异常:{ex.Message}");
- }
- return materialInfos;
- }
-
- ///
- /// 根据物料编号获取物料信息
- ///
- /// 物料编号
- ///
- [HttpGet("Get/{materialCode}")]
- public BaseMaterialInfo GetMaterialInfoByMaterialCode(string materialCode)
- {
- BaseMaterialInfo materialInfo = null;
- try
- {
- materialInfo = _service.GetMaterialInfoByMaterialCode(materialCode);
- }
- catch (Exception ex)
- {
- _logger.Error($"根据物料编号获取物料信息接口调用异常:{ex.Message}");
- }
- return materialInfo;
- }
-
- ///
- /// 通过物料类别获取物料信息
- ///
- /// 物料大类
- /// 物料细类
- ///
- [HttpGet("Get/{majorTypeId}/{minorTypeId}")]
- public IEnumerable GetMaterialInfosByMaterialType(int majorTypeId, string minorTypeId)
- {
- IEnumerable materialInfos = null;
- try
- {
- materialInfos = _service.GetMaterialInfosByMaterialType(majorTypeId, minorTypeId);
- }
- catch (Exception ex)
- {
- _logger.Error($"通过物料类别获取物料信息接口调用异常:{ex.Message}");
- }
- return materialInfos;
- }
- }
-}
diff --git a/SlnMesnac/Controllers/BaseUserController.cs b/SlnMesnac/Controllers/BaseUserController.cs
deleted file mode 100644
index b6d6b40..0000000
--- a/SlnMesnac/Controllers/BaseUserController.cs
+++ /dev/null
@@ -1,82 +0,0 @@
-using Microsoft.AspNetCore.Http;
-using Microsoft.AspNetCore.Mvc;
-using SlnMesnac.Model.domain;
-using SlnMesnac.Plc;
-using SlnMesnac.Repository.service;
-using SlnMesnac.Serilog;
-
-namespace SlnMesnac.Controllers
-{
- ///
- /// 人员基础信息
- ///
- [Route("api/[controller]")]
- [ApiController]
- public class BaseUserController : ControllerBase
- {
- public readonly SerilogHelper _logger;
-
- private readonly IBaseUserService _service;
-
- ///
- ///
- ///
- ///
- ///
- public BaseUserController(SerilogHelper logger, IBaseUserService service)
- {
- _logger = logger;
- _service = service;
- }
-
- ///
- /// 获取人员基础信息
- ///
- ///
- [HttpGet]
- public IEnumerable Get()
- {
- IEnumerable users = null;
- try
- {
- users = _service.GetUsers();
- }
- catch (Exception ex)
- {
- _logger.Error($"获取用户信息接口调用异常:{ex.Message}");
- }
- return users;
- }
-
- ///
- /// 通过用户名称获取指定用户信息
- ///
- /// 用户名称
- ///
- [HttpGet("Gets/{userName}")]
- public IEnumerable GetUserByUserName(string userName)
- {
- IEnumerable users = null;
- try
- {
- users = _service.GetUsers();
- }
- catch (Exception ex)
- {
- _logger.Error($"获取用户信息接口调用异常:{ex.Message}");
- }
- return users;
- }
-
- ///
- /// 添加用户信息
- ///
- /// 用户列表
- ///
- [HttpPut]
- public bool InsertUserInfo(List users)
- {
- return _service.InsertUsers(users);
- }
- }
-}
diff --git a/SlnMesnac/Controllers/JobController.cs b/SlnMesnac/Controllers/JobController.cs
deleted file mode 100644
index e0be503..0000000
--- a/SlnMesnac/Controllers/JobController.cs
+++ /dev/null
@@ -1,61 +0,0 @@
-using Microsoft.AspNetCore.Http;
-using Microsoft.AspNetCore.Mvc;
-using Quartz;
-
-namespace SlnMesnac.Controllers
-{
- ///
- /// 任务调度
- ///
- [ApiController]
- [Route("api/[controller]")]
- public class JobController
- {
- private readonly IScheduler _scheduler;
-
- ///
- ///
- ///
- ///
- public JobController(IScheduler scheduler)
- {
- _scheduler = scheduler;
- }
-
- ///
- /// 启动任务
- ///
- /// 任务名称
- /// 任务分组
- ///
- [HttpPost("start")]
- public async Task StartJob(string jobName, string groupName)
- {
- // 检查调度器是否已经启动
- if (!_scheduler.IsStarted)
- {
- await _scheduler.Start();
- }
-
- var myJobKey = new JobKey(jobName, groupName);
- await _scheduler.ResumeJob(myJobKey);
-
- return "Job started successfully.";
- }
-
- ///
- /// 停止任务
- ///
- /// 任务名称
- /// 任务分组
- ///
- [HttpPost("stop")]
- public async Task StopJob(string jobName, string groupName)
- {
- var myJobKey = new JobKey(jobName, groupName);
- await _scheduler.PauseJob(myJobKey);
-
- return "Job stopped successfully.";
- }
- }
-}
\ No newline at end of file
diff --git a/SlnMesnac/Program.cs b/SlnMesnac/Program.cs
deleted file mode 100644
index b76cbf2..0000000
--- a/SlnMesnac/Program.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using Serilog;
-
-namespace SlnMesnac
-{
- ///
- ///
- ///
- public class Program
- {
- ///
- /// Main
- ///
- ///
- public static void Main(string[] args)
- {
- CreateHostBuilder(args).Build().Run();
- }
-
- ///
- /// CreateHostBuilder
- ///
- ///
- ///
- public static IHostBuilder CreateHostBuilder(string[] args) =>
- Host.CreateDefaultBuilder(args)
- .UseSerilog()
- .ConfigureWebHostDefaults(webBuilder =>
- {
- webBuilder.UseStartup();
- });
- }
-}
\ No newline at end of file
diff --git a/SlnMesnac/Properties/launchSettings.json b/SlnMesnac/Properties/launchSettings.json
deleted file mode 100644
index 3f9dcb9..0000000
--- a/SlnMesnac/Properties/launchSettings.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "$schema": "http://json.schemastore.org/launchsettings.json",
- "iisSettings": {
- "windowsAuthentication": false,
- "anonymousAuthentication": true,
- "iisExpress": {
- "applicationUrl": "http://localhost:32147",
- "sslPort": 44302
- }
- },
- "profiles": {
- "IIS Express": {
- "commandName": "IISExpress",
- "launchBrowser": true,
- //"launchUrl": "swagger",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- }
- },
- "SlnMesnac": {
- "commandName": "Project",
- "launchBrowser": true,
- //"launchUrl": "swagger",
- "applicationUrl": "http://localhost:5000",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- }
- }
- }
-}
diff --git a/SlnMesnac/SlnMesnac.csproj b/SlnMesnac/SlnMesnac.csproj
deleted file mode 100644
index 191e4dc..0000000
--- a/SlnMesnac/SlnMesnac.csproj
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- net6.0
- enable
- enable
- True
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SlnMesnac/Startup.cs b/SlnMesnac/Startup.cs
deleted file mode 100644
index 14525f4..0000000
--- a/SlnMesnac/Startup.cs
+++ /dev/null
@@ -1,121 +0,0 @@
-using Microsoft.OpenApi.Models;
-using SlnMesnac.Config;
-using SlnMesnac.Quartz;
-using SlnMesnac.Serilog;
-using SlnMesnac.Extensions;
-using System.Runtime.Serialization;
-
-namespace SlnMesnac
-{
- ///
- ///
- ///
- public class Startup
- {
- ///
- ///
- ///
- ///
- public Startup(IConfiguration configuration)
- {
- Configuration = configuration;
- }
-
- ///
- ///
- ///
- public IConfiguration Configuration { get; }
-
- ///
- /// This method gets called by the runtime. Use this method to add services to the container.
- ///
- ///
- [Obsolete]
- public void ConfigureServices(IServiceCollection services)
- {
- services.AddControllers();
-
- //配置Swagger
- services.AddSwaggerGen(swagger =>
- {
- //自定义接口信息
- swagger.SwaggerDoc("V1.0", new OpenApiInfo
- {
- Title = "MES Web Api",
- Version = "V1.0",
- Description = $"API版本V1.0",
- Contact = new OpenApiContact
- {
- Name = "MES Web Api",
- Email = "wenjy@mesnac.com"
- }
- });
-
- //自定义实体别名
- swagger.CustomSchemaIds(type => type.GetCustomAttributes(typeof(DataContractAttribute), true)
- .Cast()
- .FirstOrDefault()?.Name);
-
- //配置Action名称
- var path = Path.Combine(AppContext.BaseDirectory, "SlnMesnac.xml");
- swagger.IncludeXmlComments(path, true); // true : 显示控制器层注释
- swagger.OrderActionsBy(o => o.RelativePath); // 对action的名称进行排序,如果有多个,就可以看见效果了。
- });
-
- //注册配置类
- services.AddSingleton(provider =>
- {
- var configuration = provider.GetService();
- return configuration.GetSection("AppConfig").Get();
-
- });
-
-
- //注册SqlSugar
- services.AddSqlSugarSetup();
-
- //注册服务
- //services.AddServices();
-
- //注册任务调度
- services.AddQuartzSetUp();
-
- }
-
- ///
- /// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
- ///
- ///
- ///
- public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
- {
- if (env.IsDevelopment())
- {
- app.UseDeveloperExceptionPage();
- }
-
- //启用Swagger中间件
- app.UseSwagger();
- app.UseSwaggerUI(c =>
- {
- c.SwaggerEndpoint("/swagger/V1.0/swagger.json", "MES Web Api V1.0");
- c.RoutePrefix = "";
- });
-
- //启用Serilog中间件
- app.UseSerilogExtensions();
-
- //app.UseHttpsRedirection();
-
- app.UseRouting();
-
- app.UseAuthorization();
-
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapControllers();
- });
-
- }
- }
-}
diff --git a/SlnMesnac/appsettings.Development.json b/SlnMesnac/appsettings.Development.json
deleted file mode 100644
index 0c208ae..0000000
--- a/SlnMesnac/appsettings.Development.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- }
-}
diff --git a/SlnMesnac/appsettings.json b/SlnMesnac/appsettings.json
deleted file mode 100644
index d05c71e..0000000
--- a/SlnMesnac/appsettings.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- },
- "AllowedHosts": "*",
- "AppConfig": {
- "logPath": "E:\\桌面\\日常代码\\SlnMesnac\\SlnMesnac\\bin\\Debug\\net6.0",
- "mesConnStr": "server=.;uid=sa;pwd=123456;database=JiangYinMENS",
- "mcsConnStr": "Data Source=175.27.215.92/helowin;User ID=aucma_scada;Password=aucma"
- }
-}