11 lines
243 B
C#
11 lines
243 B
C#
|
using LFlow.Base.Default;
|
|||
|
using LFlow.OnlineManegement.Model;
|
|||
|
using SqlSugar;
|
|||
|
|
|||
|
namespace LFlow.OnlineManegement.Repository
|
|||
|
{
|
|||
|
public class OnlineManagementRepo(ISqlSugarClient db) : DefaultCurdRepo<OnlineModel, string>(db)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|