初始提交
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// DeliverAddress Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class DeliverAddress : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 地址
|
||||
/// </summary>
|
||||
[JsonProperty("address")]
|
||||
public string Address { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 区域编码
|
||||
/// </summary>
|
||||
[JsonProperty("address_code")]
|
||||
public string AddressCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否默认收货地址
|
||||
/// </summary>
|
||||
[JsonProperty("default_deliver_address")]
|
||||
public string DefaultDeliverAddress { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 收货人所在区县
|
||||
/// </summary>
|
||||
[JsonProperty("deliver_area")]
|
||||
public string DeliverArea { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 收货人所在城市
|
||||
/// </summary>
|
||||
[JsonProperty("deliver_city")]
|
||||
public string DeliverCity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 收货人全名
|
||||
/// </summary>
|
||||
[JsonProperty("deliver_fullname")]
|
||||
public string DeliverFullname { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 收货地址的联系人移动电话
|
||||
/// </summary>
|
||||
[JsonProperty("deliver_mobile")]
|
||||
public string DeliverMobile { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 收货地址的联系人固定电话
|
||||
/// </summary>
|
||||
[JsonProperty("deliver_phone")]
|
||||
public string DeliverPhone { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 收货人所在省份
|
||||
/// </summary>
|
||||
[JsonProperty("deliver_province")]
|
||||
public string DeliverProvince { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 邮政编码
|
||||
/// </summary>
|
||||
[JsonProperty("zip")]
|
||||
public string Zip { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user