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.
57 lines
1.4 KiB
57 lines
1.4 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 ReturnAddressVO:JdObject{
|
|
[JsonProperty("id")]
|
|
public long
|
|
|
|
id
|
|
{ get; set; }
|
|
[JsonProperty("contact")]
|
|
public string
|
|
|
|
contact
|
|
{ get; set; }
|
|
[JsonProperty("phone")]
|
|
public string
|
|
|
|
phone
|
|
{ get; set; }
|
|
[JsonProperty("zip_code")]
|
|
public string
|
|
|
|
zipCode
|
|
{ get; set; }
|
|
[JsonProperty("full_address")]
|
|
public string
|
|
|
|
fullAddress
|
|
{ get; set; }
|
|
[JsonProperty("full_area_id")]
|
|
public string
|
|
|
|
fullAreaId
|
|
{ get; set; }
|
|
[JsonProperty("address_type")]
|
|
public int
|
|
|
|
addressType
|
|
{ get; set; }
|
|
[JsonProperty("create_time")]
|
|
public DateTime
|
|
|
|
createTime
|
|
{ get; set; }
|
|
[JsonProperty("modify_time")]
|
|
public DateTime
|
|
|
|
modifyTime
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|