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.
78 lines
1.4 KiB
78 lines
1.4 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 JosExceptionQueryResult:JdObject{
|
||
|
[JsonProperty("orderNo")]
|
||
|
public string
|
||
|
|
||
|
orderNo
|
||
|
{ get; set; }
|
||
|
[JsonProperty("isvOrderNo")]
|
||
|
public string
|
||
|
|
||
|
isvOrderNo
|
||
|
{ get; set; }
|
||
|
[JsonProperty("sellerName")]
|
||
|
public string
|
||
|
|
||
|
sellerName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("deptName")]
|
||
|
public string
|
||
|
|
||
|
deptName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("warehouseName")]
|
||
|
public string
|
||
|
|
||
|
warehouseName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("code")]
|
||
|
public string
|
||
|
|
||
|
code
|
||
|
{ get; set; }
|
||
|
[JsonProperty("message")]
|
||
|
public string
|
||
|
|
||
|
message
|
||
|
{ get; set; }
|
||
|
[JsonProperty("errReason")]
|
||
|
public string
|
||
|
|
||
|
errReason
|
||
|
{ get; set; }
|
||
|
[JsonProperty("solution")]
|
||
|
public string
|
||
|
|
||
|
solution
|
||
|
{ get; set; }
|
||
|
[JsonProperty("pauseTime")]
|
||
|
public string
|
||
|
|
||
|
pauseTime
|
||
|
{ get; set; }
|
||
|
[JsonProperty("isvCreateTime")]
|
||
|
public string
|
||
|
|
||
|
isvCreateTime
|
||
|
{ get; set; }
|
||
|
[JsonProperty("createTime")]
|
||
|
public string
|
||
|
|
||
|
createTime
|
||
|
{ get; set; }
|
||
|
[JsonProperty("orderTypeName")]
|
||
|
public string
|
||
|
|
||
|
orderTypeName
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|