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.
132 lines
2.4 KiB
132 lines
2.4 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 RecyclerOrderSettle:JdObject{
|
|
[JsonProperty("createDate")]
|
|
public DateTime
|
|
|
|
createDate
|
|
{ get; set; }
|
|
[JsonProperty("settleStat")]
|
|
public int
|
|
|
|
settleStat
|
|
{ get; set; }
|
|
[JsonProperty("recyclerId")]
|
|
public int
|
|
|
|
recyclerId
|
|
{ get; set; }
|
|
[JsonProperty("recyclerName")]
|
|
public string
|
|
|
|
recyclerName
|
|
{ get; set; }
|
|
[JsonProperty("orderNo")]
|
|
public string
|
|
|
|
orderNo
|
|
{ get; set; }
|
|
[JsonProperty("saleOrderNo")]
|
|
public string
|
|
|
|
saleOrderNo
|
|
{ get; set; }
|
|
[JsonProperty("jdCheckDate")]
|
|
public DateTime
|
|
|
|
jdCheckDate
|
|
{ get; set; }
|
|
[JsonProperty("serviceTypeId")]
|
|
public int
|
|
|
|
serviceTypeId
|
|
{ get; set; }
|
|
[JsonProperty("serviceTypeName")]
|
|
public string
|
|
|
|
serviceTypeName
|
|
{ get; set; }
|
|
[JsonProperty("brandName")]
|
|
public string
|
|
|
|
brandName
|
|
{ get; set; }
|
|
[JsonProperty("settleItem")]
|
|
public string
|
|
|
|
settleItem
|
|
{ get; set; }
|
|
[JsonProperty("serviceAmount")]
|
|
public double
|
|
|
|
serviceAmount
|
|
{ get; set; }
|
|
[JsonProperty("assessRemark")]
|
|
public string
|
|
|
|
assessRemark
|
|
{ get; set; }
|
|
[JsonProperty("amount")]
|
|
public double
|
|
|
|
amount
|
|
{ get; set; }
|
|
[JsonProperty("recyclerSettleNo")]
|
|
public string
|
|
|
|
recyclerSettleNo
|
|
{ get; set; }
|
|
[JsonProperty("firstLevelCatId")]
|
|
public int
|
|
|
|
firstLevelCatId
|
|
{ get; set; }
|
|
[JsonProperty("firstLevelCat")]
|
|
public string
|
|
|
|
firstLevelCat
|
|
{ get; set; }
|
|
[JsonProperty("secondLevelCatId")]
|
|
public int
|
|
|
|
secondLevelCatId
|
|
{ get; set; }
|
|
[JsonProperty("secondLevelCat")]
|
|
public string
|
|
|
|
secondLevelCat
|
|
{ get; set; }
|
|
[JsonProperty("thirdLevelCatId")]
|
|
public int
|
|
|
|
thirdLevelCatId
|
|
{ get; set; }
|
|
[JsonProperty("thirdLevelCat")]
|
|
public string
|
|
|
|
thirdLevelCat
|
|
{ get; set; }
|
|
[JsonProperty("businessSku")]
|
|
public string
|
|
|
|
businessSku
|
|
{ get; set; }
|
|
[JsonProperty("businessSkuName")]
|
|
public string
|
|
|
|
businessSkuName
|
|
{ get; set; }
|
|
[JsonProperty("id")]
|
|
public int
|
|
|
|
id
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|