Files
iMES_Net/iMES.System/IServices/System/Partial/ISys_UserService.cs

18 lines
488 B
C#
Raw Normal View History

2026-02-06 18:34:35 +08:00
using iMES.Core.BaseProvider;
using iMES.Core.Utilities;
using iMES.Entity.DomainModels;
using System.Threading.Tasks;
namespace iMES.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();
}
}