using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppInvoiceFinancialBlockchainBatchqueryModel Data Structure. /// [Serializable] public class AlipayEbppInvoiceFinancialBlockchainBatchqueryModel : AopObject { /// /// 证件号码的hash值,使用MD5算法获取的hash /// [XmlElement("cert_no_hash")] public string CertNoHash { get; set; } /// /// 证件类型 可选值(身份证:IDENTITY_CARD) /// [XmlElement("cert_type")] public string CertType { get; set; } /// /// 当前页码,起始号码是1 /// [XmlElement("current_page")] public long CurrentPage { get; set; } /// /// 票据种类 可选值(财政电子票据:FINANCIAL_ELECTRONIC_BILL) /// [XmlElement("invoice_kind")] public string InvoiceKind { get; set; } /// /// 分页大小,最大值为50 /// [XmlElement("page_size")] public long PageSize { get; set; } } }