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

54 lines
1.3 KiB
C#
Raw 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>
/// AlipayEbppJfexportInstbillQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppJfexportInstbillQueryModel : AopObject
{
/// <summary>
/// 账期
/// </summary>
[JsonProperty("bill_date")]
public string BillDate { get; set; }
/// <summary>
/// 户号
/// </summary>
[JsonProperty("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 业务类型英文名称 固定传JF表示缴费
/// </summary>
[JsonProperty("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 出账机构英文简称
/// </summary>
[JsonProperty("charge_inst")]
public string ChargeInst { get; set; }
/// <summary>
/// 拓展字段json串(key-value对)
/// </summary>
[JsonProperty("extend_field")]
public string ExtendField { get; set; }
/// <summary>
/// 账单拥有者姓名
/// </summary>
[JsonProperty("owner_name")]
public string OwnerName { get; set; }
/// <summary>
/// 子业务类型英文名称ELECTRIC-电费WATER-水费GAS-燃气费
/// </summary>
[JsonProperty("sub_biz_type")]
public string SubBizType { get; set; }
}
}