using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InvoiceItemApplyOpenModel Data Structure. /// [Serializable] public class InvoiceItemApplyOpenModel : AopObject { /// /// 明细不含税金额,该值为item_quantity*item_unit_price,依据税控厂商的不同,目前对接的阿里平台和浙江航信该字段不必传 /// [JsonProperty("item_ex_tax_amount")] public string ItemExTaxAmount { get; set; } /// /// 发票项目名称(或商品名称) /// [JsonProperty("item_name")] public string ItemName { get; set; } /// /// 商品编号 /// [JsonProperty("item_no")] public string ItemNo { get; set; } /// /// 数量。新版电子发票,折扣行此参数不能传,非折扣行必传 /// [JsonProperty("item_quantity")] public long ItemQuantity { get; set; } /// /// 商品型号 /// [JsonProperty("item_spec")] public string ItemSpec { get; set; } /// /// 明细价税合计。该值为item_tax_amount+item_ex_tax_amount,依据税控厂商的不同,目前对接的阿里平台和浙江航信该字段可不传。 /// [JsonProperty("item_sum_amount")] public string ItemSumAmount { get; set; } /// /// 明细税额,该值为item_ex_tax_amount*item_tax_rate,依据税控厂商的不同,对于目前对接的浙江航信和阿里平台,该字段可不传 /// [JsonProperty("item_tax_amount")] public string ItemTaxAmount { get; set; } /// /// 税率 /// [JsonProperty("item_tax_rate")] public string ItemTaxRate { get; set; } /// /// 单位 /// [JsonProperty("item_unit")] public string ItemUnit { get; set; } /// /// 单价,格式:100.00。新版电子发票,折扣行此参数不能传,非折扣行必传 /// [JsonProperty("item_unit_price")] public string ItemUnitPrice { get; set; } /// /// 发票行性质。0表示正常行,1表示折扣行,2表示被折扣行。比如充电器单价100元,折扣10元,则明细为2行,充电器行性质为2,折扣行性质为1。如果充电器没有折扣,则值应为0 /// [JsonProperty("row_type")] public string RowType { get; set; } } }