lingling
2025-03-14 53ae121a66b937b532ea762905aaa16953442ddc
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
using System;
using System.Threading.Tasks;
using Volo.Abp;
using Volo.Abp.Application.Services;
 
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<Guid> LifePayPhoneMesssageCodeLogin(LifePayPhoneMesssageCodeLoginInput input);
 
        #endregion
    }
}