using WIDESEA.Core.BaseProvider; using WIDESEA.Core.Utilities; using WIDESEA.Entity.DomainModels; using System.Threading.Tasks; namespace WIDESEA.Services.IServices { public partial interface ISys_UserService { Task Login(LoginInfo loginInfo, bool verificationCode = true); Task ReplaceToken(); Task ModifyPwd(string oldPwd, string newPwd); Task GetCurrentUserInfo(); public WebResponseContent ReplacePwd(SaveModel saveModel); } }