添加登录注册业务

This commit is contained in:
橙子
2022-04-07 22:48:10 +08:00
parent 4472e4aa6f
commit 0fba47207f
31 changed files with 24606 additions and 85 deletions

View File

@@ -1,4 +1,5 @@
using Yi.Framework.Interface;
using SqlSugar;
using Yi.Framework.Interface;
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
@@ -6,6 +7,8 @@ namespace Yi.Framework.Service
{
public partial class UserService : Repository<UserEntity>, IUserService
{
public UserService(ISqlSugarClient context) : base(context)
{
}
}
}