49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEbppIsvImportedbillQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEbppIsvImportedbillQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 业务类型
|
|
/// </summary>
|
|
[XmlElement("biz_type")]
|
|
public string BizType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出账机构
|
|
/// </summary>
|
|
[XmlElement("charge_inst")]
|
|
public string ChargeInst { get; set; }
|
|
|
|
/// <summary>
|
|
/// 账单导入截止日期
|
|
/// </summary>
|
|
[XmlElement("end_date")]
|
|
public string EndDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 机构代码
|
|
/// </summary>
|
|
[XmlElement("org_code")]
|
|
public string OrgCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 账单导入起始日期
|
|
/// </summary>
|
|
[XmlElement("start_date")]
|
|
public string StartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 子业务类型
|
|
/// </summary>
|
|
[XmlElement("sub_biz_type")]
|
|
public string SubBizType { get; set; }
|
|
}
|
|
}
|