初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEbppJfexportBillQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppJfexportBillQueryModel : AopObject
{
/// <summary>
/// 支付宝的业务订单号,具有唯一性和幂等性
/// </summary>
[JsonProperty("bill_no")]
public string BillNo { get; set; }
/// <summary>
/// 业务类型英文名称
/// </summary>
[JsonProperty("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 拓展字段json串(key-value对)
/// </summary>
[JsonProperty("extend_field")]
public string ExtendField { get; set; }
}
}