You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
534 B

using VOL.Core.BaseProvider;
using VOL.Core.Utilities;
using VOL.Entity.DomainModels;
using System.Threading.Tasks;
namespace VOL.System.IServices
{
public partial interface ISys_UserService
{
Task<WebResponseContent> Login(LoginInfo loginInfo, bool verificationCode = true);
Task<WebResponseContent> ReplaceToken();
Task<WebResponseContent> ModifyPwd(string oldPwd, string newPwd);
Task<WebResponseContent> GetCurrentUserInfo();
Task<Sys_User> GetUserById(int? userId);
}
}