using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEbppJfexportBillQueryModel Data Structure.
///
[Serializable]
public class AlipayEbppJfexportBillQueryModel : AopObject
{
///
/// 支付宝的业务订单号,具有唯一性和幂等性
///
[XmlElement("bill_no")]
public string BillNo { get; set; }
///
/// 业务类型英文名称
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 拓展字段,json串(key-value对)
///
[XmlElement("extend_field")]
public string ExtendField { get; set; }
}
}