using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ArInvoiceLineOpenApiResponse Data Structure. /// [Serializable] public class ArInvoiceLineOpenApiResponse : AopObject { /// /// 含税金额 /// [XmlElement("amt")] public MultiCurrencyMoneyOpenApi Amt { get; set; } /// /// 关联的发票ID /// [XmlElement("invoice_id")] public string InvoiceId { get; set; } /// /// 发票行iD /// [XmlElement("invoice_line_id")] public string InvoiceLineId { get; set; } /// /// 计量单位 /// [XmlElement("measurement_unit")] public string MeasurementUnit { get; set; } /// /// 货物或劳务名称 /// [XmlElement("product_name")] public string ProductName { get; set; } /// /// 规格型号 /// [XmlElement("product_specification")] public string ProductSpecification { get; set; } /// /// 数量 /// [XmlElement("quantity")] public long Quantity { get; set; } /// /// 税额 /// [XmlElement("tax_amt")] public MultiCurrencyMoneyOpenApi TaxAmt { get; set; } /// /// 不含税金额 /// [XmlElement("tax_exclusive_amt")] public MultiCurrencyMoneyOpenApi TaxExclusiveAmt { get; set; } /// /// 税率 /// [XmlElement("tax_rate")] public long TaxRate { get; set; } /// /// 单价 /// [XmlElement("unit_amt")] public long UnitAmt { get; set; } } }