Files
SecMPS/api_sqlsugar/VolPro.Sys/IServices/System/Partial/ISys_UserService.cs
2026-05-15 23:22:48 +08:00

20 lines
578 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using VolPro.Core.BaseProvider;
using VolPro.Core.Utilities;
using VolPro.Entity.DomainModels;
namespace VolPro.Sys.IServices
{
public partial interface ISys_UserService
{
int GetUserNumber();
List<Sys_User> GetUserList();
Task<WebResponseContent> Login(LoginInfo loginInfo, bool verificationCode = true);
Task<WebResponseContent> ReplaceToken();
Task<WebResponseContent> ModifyPwd(string oldPwd, string newPwd);
Task<WebResponseContent> GetCurrentUserInfo();
}
}