Files
DMS/Helper/SqlSugarHelper.cs
2025-05-29 21:46:53 +08:00

27 lines
410 B
C#

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()
{
}
}
}