NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppJfexportChargeins...

49 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEbppJfexportChargeinstQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppJfexportChargeinstQueryModel : AopObject
{
/// <summary>
/// 业务类型英文简称固定传JF表示缴费
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 拓展字段json串(key-value对)
/// </summary>
[XmlElement("extend_field")]
public string ExtendField { get; set; }
/// <summary>
/// 第几页从1开始默认为1
/// </summary>
[XmlElement("page")]
public long Page { get; set; }
/// <summary>
/// 是否分页查询非分页查询时最多返回500条数据。
/// </summary>
[XmlElement("page_query")]
public bool PageQuery { get; set; }
/// <summary>
/// 每页展示的行数默认为10
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 子业务类型英文简称ELECTRIC-电费WATER-水费GAS-燃气费
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
}
}