using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayBossFncInvoicereceiptBatchqueryModel Data Structure.
///
[Serializable]
public class AlipayBossFncInvoicereceiptBatchqueryModel : AopObject
{
///
/// 月账单号集合,唯一性ID集合,月账单表唯一主键ID集合
///
[XmlArray("bill_nos")]
[XmlArrayItem("string")]
public List BillNos { get; set; }
///
/// 来源类型,01:主站;02:芝麻;03:金融云;04:微贷
///
[XmlElement("out_biz_type")]
public string OutBizType { get; set; }
}
}