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.
122 lines
2.2 KiB
122 lines
2.2 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 AssignOrder:JdObject{
|
|
[JsonProperty("userRemark")]
|
|
public string
|
|
|
|
userRemark
|
|
{ get; set; }
|
|
[JsonProperty("changeAddress")]
|
|
public int
|
|
|
|
changeAddress
|
|
{ get; set; }
|
|
[JsonProperty("userCounty")]
|
|
public string
|
|
|
|
userCounty
|
|
{ get; set; }
|
|
[JsonProperty("firstOldCat")]
|
|
public string
|
|
|
|
firstOldCat
|
|
{ get; set; }
|
|
[JsonProperty("workOrderRemark")]
|
|
public string
|
|
|
|
workOrderRemark
|
|
{ get; set; }
|
|
[JsonProperty("userTown")]
|
|
public string
|
|
|
|
userTown
|
|
{ get; set; }
|
|
[JsonProperty("oldMachineMode")]
|
|
public int
|
|
|
|
oldMachineMode
|
|
{ get; set; }
|
|
[JsonProperty("userCity")]
|
|
public string
|
|
|
|
userCity
|
|
{ get; set; }
|
|
[JsonProperty("orderNo")]
|
|
public string
|
|
|
|
orderNo
|
|
{ get; set; }
|
|
[JsonProperty("userAddress")]
|
|
public string
|
|
|
|
userAddress
|
|
{ get; set; }
|
|
[JsonProperty("secondOldCat")]
|
|
public string
|
|
|
|
secondOldCat
|
|
{ get; set; }
|
|
[JsonProperty("stat")]
|
|
public int
|
|
|
|
stat
|
|
{ get; set; }
|
|
[JsonProperty("thirdOldCat")]
|
|
public string
|
|
|
|
thirdOldCat
|
|
{ get; set; }
|
|
[JsonProperty("userProvince")]
|
|
public string
|
|
|
|
userProvince
|
|
{ get; set; }
|
|
[JsonProperty("userMobile")]
|
|
public string
|
|
|
|
userMobile
|
|
{ get; set; }
|
|
[JsonProperty("userName")]
|
|
public string
|
|
|
|
userName
|
|
{ get; set; }
|
|
[JsonProperty("estimatePrice")]
|
|
public double
|
|
|
|
estimatePrice
|
|
{ get; set; }
|
|
[JsonProperty("forthOldCat")]
|
|
public string
|
|
|
|
forthOldCat
|
|
{ get; set; }
|
|
[JsonProperty("incomeType")]
|
|
public string
|
|
|
|
incomeType
|
|
{ get; set; }
|
|
[JsonProperty("oldMachineInfo")]
|
|
public string
|
|
|
|
oldMachineInfo
|
|
{ get; set; }
|
|
[JsonProperty("expectOnsite")]
|
|
public DateTime
|
|
|
|
expectOnsite
|
|
{ get; set; }
|
|
[JsonProperty("phoneBindTimeout")]
|
|
public string
|
|
|
|
phoneBindTimeout
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|