LFlow/LFlow.OnlineManegement/Repository/OnlineManagementRepo.cs

11 lines
243 B
C#
Raw Normal View History

2024-10-19 08:33:19 +08:00
using LFlow.Base.Default;
using LFlow.OnlineManegement.Model;
using SqlSugar;
namespace LFlow.OnlineManegement.Repository
{
public class OnlineManagementRepo(ISqlSugarClient db) : DefaultCurdRepo<OnlineModel, string>(db)
{
}
}