using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Yi.Framework.WeChatPay.Core { public interface IPayInvoker { /// /// 获取WX支付链接的方法 /// 然后发布定时同步状态任务 /// /// 订单ID /// 用户信息 /// 请求上下文 /// 返回生成的支持链接 string GenerateUrl(long orderId, long totalPay); /// /// 处理微信支付回调 /// /// /// PayData HandleNotify(); } }