using System; using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp; using Volo.Abp.Application.Services; using Volo.Abp.Identity.Application.Contracts.Account; using Volo.Abp.IdentityModel; namespace LifePayment.Application.Contracts { public interface IAccountService : IApplicationService { #region life pay Task<WxMiniAppIndentityInfo> GetLifePayWxIndentity(string code); /// <summary> /// 手机验è¯ç 登录 /// 版本说明:使用验è¯ç 管ç†åŽ»æ ¡éªŒå’Œå¤±æ•ˆå¯¹åº”ä¸šåŠ¡çš„éªŒè¯ç /// </summary> /// <param name="input"></param> /// <returns></returns> /// <exception cref="UserFriendlyException"></exception> Task<LifePayPhoneMesssageCodeLoginOutput> LifePayPhoneMesssageCodeLogin(LifePayPhoneMesssageCodeLoginInput input); /// <summary> /// æ ¹æ®ç”¨æˆ·ID获å–用户是å¦ä¸ºåŽå°ç®¡ç†å‘˜ /// </summary> /// <param name="id"></param> /// <returns></returns> Task<LifePayPhoneMesssageCodeLoginOutput> LifePayUserMesssageByIduser(Guid id); Task<IdentityModelTokenCacheItem> GetTokenForWeb(AccessRequestDto accessRequestDto, string webClientIp); Task<Guid> CreateAccount(CreateAccountInput input, bool isSend = false, bool isAdminCreate = false); Task<BackClientUserInfoOutput> GetBackClientUserInfo(); #endregion } }