11 lines
245 B
C#
11 lines
245 B
C#
|
|
using LFlow.Base.Default;
|
|||
|
|
using LFlow.UserManagement.Model;
|
|||
|
|
using SqlSugar;
|
|||
|
|
|
|||
|
|
namespace LFlow.UserManagement.Repository
|
|||
|
|
{
|
|||
|
|
internal class UserManagementRepo(ISqlSugarClient client) : DefaultCurdRepo<UserModel, string>(client)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|