This commit is contained in:
2026-02-06 18:34:35 +08:00
commit f7f4c94c00
3285 changed files with 563208 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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();
}
}