Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEbppJfexportBillQueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

30 lines
705 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}