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 SettleBillDetail:JdObject{
|
||
|
[JsonProperty("assessAmount")]
|
||
|
public string
|
||
|
|
||
|
assessAmount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("taxRate")]
|
||
|
public string
|
||
|
|
||
|
taxRate
|
||
|
{ get; set; }
|
||
|
[JsonProperty("jdCheckDate")]
|
||
|
public DateTime
|
||
|
|
||
|
jdCheckDate
|
||
|
{ get; set; }
|
||
|
[JsonProperty("brandName")]
|
||
|
public string
|
||
|
|
||
|
brandName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("amount")]
|
||
|
public string
|
||
|
|
||
|
amount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("orderNo")]
|
||
|
public string
|
||
|
|
||
|
orderNo
|
||
|
{ get; set; }
|
||
|
[JsonProperty("serviceAmount")]
|
||
|
public string
|
||
|
|
||
|
serviceAmount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("settleItem")]
|
||
|
public string
|
||
|
|
||
|
settleItem
|
||
|
{ get; set; }
|
||
|
[JsonProperty("assessRemark")]
|
||
|
public string
|
||
|
|
||
|
assessRemark
|
||
|
{ get; set; }
|
||
|
[JsonProperty("itemCatName")]
|
||
|
public string
|
||
|
|
||
|
itemCatName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("settleNo")]
|
||
|
public string
|
||
|
|
||
|
settleNo
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|