| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- @{
- ViewData["Title"] = "前言";
- }
- <p>
- Payment 基于 .NET Core / ASP.NET Core 开发,支持多商户的跨平台支付SDK集。 简化了API调用及相关通知的处理流程。
- </p>
- <p class="text-danger">
- 注: 本Demo仅作为测试用途,基本涵盖了常用的API。用作实际业务时,请务必配合相关API文档及说明处理。
- </p>
- <br />
- <h5>NuGet 程序包:</h5>
- <table class="table table-bordered table-hover">
- <thead>
- <tr>
- <th scope="col">#</th>
- <th scope="col">Name</th>
- <th scope="col">Package</th>
- <th scope="col">NuGet</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <th scope="row">1</th>
- <td><a asp-controller="Alipay" asp-action="Index">支付宝</a></td>
- <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.Alipay" target="_blank">Essensoft.AspNetCore.Payment.Alipay</a></td>
- <td>
- <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.Alipay" target="_blank">
- <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.Alipay.svg?style=flat-square" />
- </a>
- </td>
- </tr>
- <tr>
- <th scope="row">2</th>
- <td><a asp-controller="WeChatPay" asp-action="Index">微信支付</a></td>
- <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.WeChatPay" target="_blank">Essensoft.AspNetCore.Payment.WeChatPay</a></td>
- <td>
- <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.WeChatPay" target="_blank">
- <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.WeChatPay.svg?style=flat-square" />
- </a>
- </td>
- </tr>
- <tr>
- <th scope="row">3</th>
- <td><a asp-controller="QPay" asp-action="Index">QQ钱包</a></td>
- <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.QPay" target="_blank">Essensoft.AspNetCore.Payment.QPay</a></td>
- <td>
- <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.QPay" target="_blank">
- <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.QPay.svg?style=flat-square" />
- </a>
- </td>
- </tr>
- <tr>
- <th scope="row">4</th>
- <td><a asp-controller="JDPay" asp-action="Index">京东支付</a></td>
- <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.JDPay" target="_blank">Essensoft.AspNetCore.Payment.JDPay</a></td>
- <td>
- <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.JDPay" target="_blank">
- <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.JDPay.svg?style=flat-square" />
- </a>
- </td>
- </tr>
- <tr>
- <th scope="row">5</th>
- <td><a asp-controller="LianLianPay" asp-action="Index">连连支付</a></td>
- <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.LianLianPay" target="_blank">Essensoft.AspNetCore.Payment.LianLianPay</a></td>
- <td>
- <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.LianLianPay" target="_blank">
- <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.LianLianPay.svg?style=flat-square" />
- </a>
- </td>
- </tr>
- <tr>
- <th scope="row">6</th>
- <td><a asp-controller="UnionPay" asp-action="Index">银联支付</a></td>
- <td><a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.UnionPay" target="_blank">Essensoft.AspNetCore.Payment.UnionPay</a></td>
- <td>
- <a href="https://www.nuget.org/packages/Essensoft.AspNetCore.Payment.UnionPay" target="_blank">
- <img src="https://img.shields.io/nuget/v/Essensoft.AspNetCore.Payment.UnionPay.svg?style=flat-square" />
- </a>
- </td>
- </tr>
- </tbody>
- </table>
|