using ZhiYi.Core.Application.Dtos.PassInfo; namespace ZhiYi.Core.Application.Services { /// /// 用户管理 /// public interface IUserAppService { /// /// 登录 /// /// /// Task LoginAsync(UserLoginDto input); /// /// 注册 /// /// 账号 /// Task RegisterAsync(UserCreationDto input); /// /// 获取用户列表 /// /// Task> GetUserAsync(); /// /// 获取签名 /// /// Task GetSignature(SignatureCreationDto input); /// /// 获取手机验证码 /// /// /// Task GetMessageCodeAsync(string phone); /// /// 验证码验证 /// /// Task VefiyCodeAsync(MessageCodeVefiyDto input); /// /// 更改密码 /// /// /// Task ChangePassAsync(ChangePassDto input); } }