忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,37 +0,0 @@
using Hncore.Payment.Enum;
using System.Collections.Generic;
namespace Hncore.Payment.Request
{
public class CreateOrderRequestBase: PaymentRequestBase
{
/// <summary>
/// 业务方附加信息,回调时原样返回
/// </summary>
public string Attach { get; set; }
/// <summary>
/// 总金额,单位:分
/// </summary>
public int TotalFee { get; set; }
/// <summary>
/// 支付类型
/// </summary>
public PaymentType PaymentType { get; set; } = PaymentType.OnlinePayWechart;
/// <summary>
/// 回调地址
/// </summary>
public string CallbackUrl { get; set; }
/// <summary>
/// 商品描述
/// </summary>
public string Body { get; set; }
/// <summary>
/// 业务订单号
/// </summary>
public string OrderId { get; set; }
}
}