You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.3 KiB
42 lines
1.3 KiB
|
|
using Tiobon.Core.IServices.BASE;
|
|
using Tiobon.Core.Model;
|
|
using Tiobon.Core.Model.ViewModels;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tiobon.Core.IServices
|
|
{
|
|
/// <summary>
|
|
/// IPayServices
|
|
/// </summary>
|
|
public interface IPayServices : IBaseServices<RootEntityTkey<int>>
|
|
{
|
|
/// <summary>
|
|
/// 被扫支付
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<ServiceResult<PayReturnResultModel>> Pay(PayNeedModel payModel);
|
|
/// <summary>
|
|
/// 退款
|
|
/// </summary>
|
|
/// <param name="payModel"></param>
|
|
/// <returns></returns>
|
|
Task<ServiceResult<PayRefundReturnResultModel>> PayRefund(PayRefundNeedModel payModel);
|
|
/// <summary>
|
|
/// 轮询查询
|
|
/// </summary>
|
|
/// <param name="payModel"></param>
|
|
/// <param name="times">轮询次数</param>
|
|
/// <returns></returns>
|
|
Task<ServiceResult<PayReturnResultModel>> PayCheck(PayNeedModel payModel,int times);
|
|
/// <summary>
|
|
/// 验证签名
|
|
/// </summary>
|
|
/// <param name="strSrc">参数</param>
|
|
/// <param name="sign">签名</param>
|
|
/// <param name="pubKey">公钥</param>
|
|
/// <returns></returns>
|
|
bool NotifyCheck(string strSrc, string sign, string pubKey);
|
|
|
|
}
|
|
}
|
|
|