/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System.Threading.Tasks;
using CoreCms.Net.Model.Entities;
using CoreCms.Net.Model.ViewModels.UI;
namespace CoreCms.Net.IServices
{
///
/// 余额支付 服务工厂接口
///
public interface IBalancePayServices : IBaseServices
{
///
/// 发起支付
///
/// 实体数据
///
Task PubPay(CoreCmsBillPayments entity);
///
/// 用户余额退款
///
/// 退款单数据
/// 支付单数据
///
Task Refund(CoreCmsBillRefund refundInfo, CoreCmsBillPayments paymentInfo);
}
}