2025-06-06 16:55:14 +08:00

19 lines
590 B
C#

using VOL.Core.BaseProvider;
using VOL.Core.Utilities;
using VOL.Entity.DomainModels;
using System.Threading.Tasks;
using VOL.Model;
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<PageDataDto<UserPageListModel>> GetUserPageList(UserPageListParam paramDto);
}
}