lingling
2025-03-17 2dffeebb60078f6ee1d59ac327c0ecce3fd200e9
LifePayment/LifePayment.Application.Contracts/User/IAccountService.cs
@@ -2,13 +2,13 @@
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);
@@ -21,6 +21,9 @@
        /// <exception cref="UserFriendlyException"></exception>
        Task<Guid> LifePayPhoneMesssageCodeLogin(LifePayPhoneMesssageCodeLoginInput input);
        Task<IdentityModelTokenCacheItem> GetTokenForWeb(AccessRequestDto accessRequestDto, string webClientIp);
        Task<Guid> CreateAccount(CreateAccountInput input, bool isSend = false, bool isAdminCreate = false, string password = null);
        #endregion
    }
}