【新增】实现支付宝小程序适配。

This commit is contained in:
jianweie
2024-04-22 23:04:58 +08:00
parent 8a4fe681cb
commit a6ad9274e1
53 changed files with 13032 additions and 107 deletions

View File

@@ -9,6 +9,7 @@
***********************************************************************/
using System.Threading.Tasks;
using Aop.Api.Response;
using CoreCms.Net.Model.Entities;
using CoreCms.Net.Model.ViewModels.UI;
@@ -35,6 +36,19 @@ namespace CoreCms.Net.IServices
/// <returns></returns>
Task<WebApiCallBack> Refund(CoreCmsBillRefund refundInfo, CoreCmsBillPayments paymentInfo);
/// <summary>
/// 根据票据返回app_auth_token相关信息
/// </summary>
/// <param name="code"></param>
/// <returns></returns>
AlipaySystemOauthTokenResponse GetAliPayAppAuthTokenBYCode(string code);
/// <summary>
///
/// </summary>
/// <param name="token"></param>
/// <returns></returns>
AlipayUserInfoShareResponse GetAliPayUserInfoByToken(string token);
}
}