创建了PLC相关的文件

This commit is contained in:
2025-05-29 21:46:53 +08:00
parent 88ef76bd4d
commit 1294adfbfd
12 changed files with 219 additions and 7 deletions

26
Helper/SqlSugarHelper.cs Normal file
View File

@@ -0,0 +1,26 @@
using PMSWPF.Data;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PMSWPF.Helper
{
public class SqlSugarHelper
{
private DbContext _db;
public SqlSugarHelper() {
_db=new DbContext();
}
public void InitTables()
{
}
}
}