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.
68 lines
1.2 KiB
68 lines
1.2 KiB
3 years ago
|
using System;
|
||
|
using System.Xml.Serialization;
|
||
|
using System.Collections.Generic;
|
||
|
using Newtonsoft.Json;
|
||
|
using Jd.Api.Domain;
|
||
|
namespace Jd.Api.Domain
|
||
|
{
|
||
|
|
||
|
[Serializable]
|
||
|
public class JosInvoiceDTO:JdObject{
|
||
|
[JsonProperty("invoiceNo")]
|
||
|
public string
|
||
|
|
||
|
invoiceNo
|
||
|
{ get; set; }
|
||
|
[JsonProperty("invoiceCode")]
|
||
|
public string
|
||
|
|
||
|
invoiceCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("saveTime")]
|
||
|
public string
|
||
|
|
||
|
saveTime
|
||
|
{ get; set; }
|
||
|
[JsonProperty("createTime")]
|
||
|
public string
|
||
|
|
||
|
createTime
|
||
|
{ get; set; }
|
||
|
[JsonProperty("amountWithTax")]
|
||
|
public string
|
||
|
|
||
|
amountWithTax
|
||
|
{ get; set; }
|
||
|
[JsonProperty("discountAmount")]
|
||
|
public string
|
||
|
|
||
|
discountAmount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("taxRate")]
|
||
|
public string
|
||
|
|
||
|
taxRate
|
||
|
{ get; set; }
|
||
|
[JsonProperty("taxAmount")]
|
||
|
public string
|
||
|
|
||
|
taxAmount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("invoiceType")]
|
||
|
public int
|
||
|
|
||
|
invoiceType
|
||
|
{ get; set; }
|
||
|
[JsonProperty("verificationStatus")]
|
||
|
public int
|
||
|
|
||
|
verificationStatus
|
||
|
{ get; set; }
|
||
|
[JsonProperty("verificationTime")]
|
||
|
public string
|
||
|
|
||
|
verificationTime
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|