11 lines
215 B
C#
11 lines
215 B
C#
|
|
using LFlow.Base.Default;
|
|||
|
|
using LFlow.Role.Model;
|
|||
|
|
using SqlSugar;
|
|||
|
|
|
|||
|
|
namespace LFlow.Role.Repository
|
|||
|
|
{
|
|||
|
|
internal class RoleRepo(ISqlSugarClient client) : DefaultCurdRepo<RoleModel, string>(client)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|