You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
57 lines
1.1 KiB
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using Jd.Api.Domain;
|
|
namespace Jd.Api.Domain
|
|
{
|
|
|
|
[Serializable]
|
|
public class OrderShouldInvoiceAmount:JdObject{
|
|
[JsonProperty("orderId")]
|
|
public string
|
|
|
|
orderId
|
|
{ get; set; }
|
|
[JsonProperty("venderId")]
|
|
public string
|
|
|
|
venderId
|
|
{ get; set; }
|
|
[JsonProperty("ivcTitle")]
|
|
public string
|
|
|
|
ivcTitle
|
|
{ get; set; }
|
|
[JsonProperty("customerTaxNo")]
|
|
public string
|
|
|
|
customerTaxNo
|
|
{ get; set; }
|
|
[JsonProperty("ivcContentType")]
|
|
public int
|
|
|
|
ivcContentType
|
|
{ get; set; }
|
|
[JsonProperty("ivcContentName")]
|
|
public string
|
|
|
|
ivcContentName
|
|
{ get; set; }
|
|
[JsonProperty("customerEmail")]
|
|
public string
|
|
|
|
customerEmail
|
|
{ get; set; }
|
|
[JsonProperty("shouldInvoiceAmount")]
|
|
public string
|
|
|
|
shouldInvoiceAmount
|
|
{ get; set; }
|
|
[JsonProperty("orderShouldInvoiceAmountDetailList")]
|
|
public List<string>
|
|
|
|
orderShouldInvoiceAmountDetailList
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|