using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ApInvoiceLineOrderRequest Data Structure.
///
[Serializable]
public class ApInvoiceLineOrderRequest : AopObject
{
///
/// 含税金额
///
[XmlElement("amt")]
public MultiCurrencyMoneyOpenApi Amt { 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; }
///
/// (invoiceType=01 || invoiceType=02 必填)税额
///
[XmlElement("tax_amt")]
public MultiCurrencyMoneyOpenApi TaxAmt { get; set; }
///
/// (invoiceType=01 || invoiceType=02 必填)不含税金额
///
[XmlElement("tax_exclusive_amt")]
public MultiCurrencyMoneyOpenApi TaxExclusiveAmt { get; set; }
///
/// (invoiceType=01 || invoiceType=02 必填,且大于0)税率
///
[XmlElement("tax_rate")]
public long TaxRate { get; set; }
///
/// 单价(元)
///
[XmlElement("unit_amt")]
public long UnitAmt { get; set; }
}
}