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.
103 lines
1.8 KiB
103 lines
1.8 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 OpenPresortResponseDto:JdObject{
|
||
|
[JsonProperty("fullAddress")]
|
||
|
public string
|
||
|
|
||
|
fullAddress
|
||
|
{ get; set; }
|
||
|
[JsonProperty("waybillCode")]
|
||
|
public string
|
||
|
|
||
|
waybillCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("stationCode")]
|
||
|
public string
|
||
|
|
||
|
stationCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("stationName")]
|
||
|
public string
|
||
|
|
||
|
stationName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("responseCode")]
|
||
|
public int
|
||
|
|
||
|
responseCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("responseMessage")]
|
||
|
public string
|
||
|
|
||
|
responseMessage
|
||
|
{ get; set; }
|
||
|
[JsonProperty("presortCode")]
|
||
|
public string
|
||
|
|
||
|
presortCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("phoneCode")]
|
||
|
public string
|
||
|
|
||
|
phoneCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("provinceName")]
|
||
|
public string
|
||
|
|
||
|
provinceName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("cityName")]
|
||
|
public string
|
||
|
|
||
|
cityName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("countyName")]
|
||
|
public string
|
||
|
|
||
|
countyName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("townName")]
|
||
|
public string
|
||
|
|
||
|
townName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("lat")]
|
||
|
public string
|
||
|
|
||
|
lat
|
||
|
{ get; set; }
|
||
|
[JsonProperty("lng")]
|
||
|
public string
|
||
|
|
||
|
lng
|
||
|
{ get; set; }
|
||
|
[JsonProperty("provinceId")]
|
||
|
public int
|
||
|
|
||
|
provinceId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("cityId")]
|
||
|
public int
|
||
|
|
||
|
cityId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("countyId")]
|
||
|
public int
|
||
|
|
||
|
countyId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("townId")]
|
||
|
public int
|
||
|
|
||
|
townId
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|