20 lines
578 B
C#
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();
|
|
}
|
|
}
|
|
|