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.
142 lines
2.5 KiB
142 lines
2.5 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 SpWorkOrderDto:JdObject{
|
|
[JsonProperty("serviceType")]
|
|
public string
|
|
|
|
serviceType
|
|
{ get; set; }
|
|
[JsonProperty("sourceId")]
|
|
public string
|
|
|
|
sourceId
|
|
{ get; set; }
|
|
[JsonProperty("cancelDate")]
|
|
public DateTime
|
|
|
|
cancelDate
|
|
{ get; set; }
|
|
[JsonProperty("city")]
|
|
public string
|
|
|
|
city
|
|
{ get; set; }
|
|
[JsonProperty("dispatchDate")]
|
|
public DateTime
|
|
|
|
dispatchDate
|
|
{ get; set; }
|
|
[JsonProperty("userPhone")]
|
|
public string
|
|
|
|
userPhone
|
|
{ get; set; }
|
|
[JsonProperty("county")]
|
|
public string
|
|
|
|
county
|
|
{ get; set; }
|
|
[JsonProperty("remark")]
|
|
public string
|
|
|
|
remark
|
|
{ get; set; }
|
|
[JsonProperty("cityId")]
|
|
public long
|
|
|
|
cityId
|
|
{ get; set; }
|
|
[JsonProperty("townId")]
|
|
public long
|
|
|
|
townId
|
|
{ get; set; }
|
|
[JsonProperty("completeDate")]
|
|
public DateTime
|
|
|
|
completeDate
|
|
{ get; set; }
|
|
[JsonProperty("province")]
|
|
public string
|
|
|
|
province
|
|
{ get; set; }
|
|
[JsonProperty("countyId")]
|
|
public long
|
|
|
|
countyId
|
|
{ get; set; }
|
|
[JsonProperty("cancelReason")]
|
|
public string
|
|
|
|
cancelReason
|
|
{ get; set; }
|
|
[JsonProperty("town")]
|
|
public string
|
|
|
|
town
|
|
{ get; set; }
|
|
[JsonProperty("userName")]
|
|
public string
|
|
|
|
userName
|
|
{ get; set; }
|
|
[JsonProperty("provinceId")]
|
|
public long
|
|
|
|
provinceId
|
|
{ get; set; }
|
|
[JsonProperty("status")]
|
|
public int
|
|
|
|
status
|
|
{ get; set; }
|
|
[JsonProperty("userPin")]
|
|
public string
|
|
|
|
userPin
|
|
{ get; set; }
|
|
[JsonProperty("userAddress")]
|
|
public string
|
|
|
|
userAddress
|
|
{ get; set; }
|
|
[JsonProperty("spSkuId")]
|
|
public string
|
|
|
|
spSkuId
|
|
{ get; set; }
|
|
[JsonProperty("sourceType")]
|
|
public int
|
|
|
|
sourceType
|
|
{ get; set; }
|
|
[JsonProperty("spSkuName")]
|
|
public string
|
|
|
|
spSkuName
|
|
{ get; set; }
|
|
[JsonProperty("itemList")]
|
|
public List<string>
|
|
|
|
itemList
|
|
{ get; set; }
|
|
[JsonProperty("spSkuNum")]
|
|
public int
|
|
|
|
spSkuNum
|
|
{ get; set; }
|
|
[JsonProperty("serviceTypeName")]
|
|
public string
|
|
|
|
serviceTypeName
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|