using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayBossFncApbillBillcustviewBatchqueryModel Data Structure.
///
[Serializable]
public class AlipayBossFncApbillBillcustviewBatchqueryModel : AopObject
{
///
/// 月账单号列表
///
[XmlArray("bill_nos")]
[XmlArrayItem("string")]
public List BillNos { get; set; }
///
/// 发票种类{"01":"增值税专用发票","02":"增值税普通发票","05":"其它发票","07":"虚拟发票"}
///
[XmlElement("invoice_type")]
public string InvoiceType { get; set; }
}
}