19 lines
590 B
C#
Raw Permalink Normal View History

2025-06-06 16:00:39 +08:00
using VOL.Core.BaseProvider;
using VOL.Core.Utilities;
using VOL.Entity.DomainModels;
using System.Threading.Tasks;
2025-06-06 16:55:14 +08:00
using VOL.Model;
2025-06-06 16:00:39 +08:00
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();
2025-06-06 16:55:14 +08:00
Task<PageDataDto<UserPageListModel>> GetUserPageList(UserPageListParam paramDto);
2025-06-06 16:00:39 +08:00
}
}