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.
93 lines
1.6 KiB
93 lines
1.6 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 OrderConsigneeResp:JdObject{
|
||
|
[JsonProperty("name")]
|
||
|
public string
|
||
|
|
||
|
name
|
||
|
{ get; set; }
|
||
|
[JsonProperty("mobile")]
|
||
|
public string
|
||
|
|
||
|
mobile
|
||
|
{ get; set; }
|
||
|
[JsonProperty("provinceId")]
|
||
|
public int
|
||
|
|
||
|
provinceId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("provinceName")]
|
||
|
public string
|
||
|
|
||
|
provinceName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("cityId")]
|
||
|
public int
|
||
|
|
||
|
cityId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("cityName")]
|
||
|
public string
|
||
|
|
||
|
cityName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("countyId")]
|
||
|
public int
|
||
|
|
||
|
countyId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("countyName")]
|
||
|
public string
|
||
|
|
||
|
countyName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("townId")]
|
||
|
public int
|
||
|
|
||
|
townId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("townName")]
|
||
|
public string
|
||
|
|
||
|
townName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("address")]
|
||
|
public string
|
||
|
|
||
|
address
|
||
|
{ get; set; }
|
||
|
[JsonProperty("zip")]
|
||
|
public string
|
||
|
|
||
|
zip
|
||
|
{ get; set; }
|
||
|
[JsonProperty("tel")]
|
||
|
public string
|
||
|
|
||
|
tel
|
||
|
{ get; set; }
|
||
|
[JsonProperty("email")]
|
||
|
public string
|
||
|
|
||
|
email
|
||
|
{ get; set; }
|
||
|
[JsonProperty("companyName")]
|
||
|
public string
|
||
|
|
||
|
companyName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("idCard")]
|
||
|
public string
|
||
|
|
||
|
idCard
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|