添加主界面
This commit is contained in:
11
Service/Interface/IUserService.cs
Normal file
11
Service/Interface/IUserService.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using Model;
|
||||
using Model.Entity;
|
||||
|
||||
namespace Service.Interface
|
||||
{
|
||||
public interface IUserService : IBaseService<UserEntity>
|
||||
{
|
||||
public Task<Result<UserEntity>> GetUserByUserNameAsync(string username);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user