Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/InvoiceItemApplyOpenModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

78 lines
2.4 KiB
C#
Raw Blame History

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