LFlow/LFlow.Role/Repository/RoleRepo.cs

11 lines
215 B
C#
Raw Normal View History

2024-11-01 16:46:18 +08:00
using LFlow.Base.Default;
using LFlow.Role.Model;
using SqlSugar;
namespace LFlow.Role.Repository
{
internal class RoleRepo(ISqlSugarClient client) : DefaultCurdRepo<RoleModel, string>(client)
{
}
}