using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// InvoiceItemContent Data Structure. /// [Serializable] public class InvoiceItemContent : AopObject { /// /// 价税合计。(等于sumPrice和tax之和) /// [XmlElement("item_amount")] public string ItemAmount { get; set; } /// /// 发票项目名称(或商品名称) /// [XmlElement("item_name")] public string ItemName { get; set; } /// /// 商品编号 /// [XmlElement("item_no")] public string ItemNo { get; set; } /// /// 单价,格式:100.00。新版电子发票,折扣行此参数不能传,非折扣行必传 /// [XmlElement("item_price")] public string ItemPrice { get; set; } /// /// 数量。新版电子发票,折扣行此参数不能传,非折扣行必传 /// [XmlElement("item_quantity")] public long ItemQuantity { get; set; } /// /// 单项总价,格式:100.00 /// [XmlElement("item_sum_price")] public string ItemSumPrice { get; set; } /// /// 税额 /// [XmlElement("item_tax_price")] public string ItemTaxPrice { get; set; } /// /// 税率 /// [XmlElement("item_tax_rate")] public string ItemTaxRate { get; set; } /// /// 台 /// [XmlElement("item_unit")] public string ItemUnit { get; set; } /// /// 发票行性质。0表示正常行,1表示折扣行,2表示被折扣行。比如充电器单价100元,折扣10元,则明细为2行,充电器行性质为2,折扣行性质为1。如果充电器没有折扣,则值应为0 /// [XmlElement("row_type")] public long RowType { get; set; } } }