using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// InvoiceAmountLimitInfo Data Structure. /// [Serializable] public class InvoiceAmountLimitInfo : AopObject { /// /// 单张发票限额,单位元 /// [XmlElement("amount_limit")] public string AmountLimit { get; set; } /// /// 税号可开发票类型,列表类型。 可选值: 增值税电子普通发票:PLAIN, 增值税专用发票:SPECIAL, 增值税普通发票:PLAIN_INVOICE,增值税普通发票(卷式):PAPER_INVOICE /// [XmlElement("invoice_kind")] public string InvoiceKind { get; set; } /// /// 月发票限额,单位元 /// [XmlElement("month_amount_limit")] public string MonthAmountLimit { get; set; } } }