统一将IService层的DTO引用迁移到Models.Dto命名空间下,移除了冗余的QYZH.InteractiveMagazine.IService.Dto引用,修正了相关文件的命名空间配置
17 lines
447 B
C#
17 lines
447 B
C#
|
|
using QYZH.InteractiveMagazine.Models.Dto;
|
|
using QYZH.InteractiveMagazine.Models.Entity;
|
|
|
|
namespace QYZH.InteractiveMagazine.IService;
|
|
|
|
public interface IAdminAuthService : IBaseService<AdminUser>
|
|
{
|
|
Task<AdminLoginOutput> LoginAsync(AdminLoginInput input);
|
|
|
|
Task LogoutAsync(long userId);
|
|
|
|
Task<AdminUserInfoOutput> GetAdminInfoAsync(long userId);
|
|
|
|
Task ChangePasswordAsync(long userId, string oldPassword, string newPassword);
|
|
}
|