zhengyiming
16 小时以前 43e28aece364ad351d61eca30c6707fcdc197ca4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
    }
}