【新增】增加支付宝支付功能,方便APP调用。

This commit is contained in:
大灰灰
2022-09-15 00:35:15 +08:00
parent 0f922e1f32
commit a3630fecc0
12 changed files with 197 additions and 27 deletions

View File

@@ -8,6 +8,7 @@
* Description: 暂无
***********************************************************************/
using System.Threading.Tasks;
using CoreCms.Net.Model.Entities;
using CoreCms.Net.Model.ViewModels.UI;
@@ -23,6 +24,6 @@ namespace CoreCms.Net.IServices
/// </summary>
/// <param name="entity">实体数据</param>
/// <returns></returns>
WebApiCallBack PubPay(CoreCmsBillPayments entity);
Task<WebApiCallBack> PubPay(CoreCmsBillPayments entity);
}
}