重置密码功能

This commit is contained in:
chenchun
2022-09-11 13:16:24 +08:00
parent 0cd3bea6bd
commit 909bdf60e7
5 changed files with 31 additions and 3 deletions

View File

@@ -98,5 +98,13 @@ namespace Yi.Framework.Interface
/// <param name="userDto"></param>
/// <returns></returns>
Task<bool> AddInfo(UserInfoDto userDto);
/// <summary>
/// 重置密码
/// </summary>
/// <param name="userId"></param>
/// <param name="password"></param>
/// <returns></returns>
Task<bool> RestPassword(long userId,string password );
}
}