29 lines
785 B
C#
29 lines
785 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AreaCode Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AreaCode : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 区域类型 AREA_PRVN:省代码; AREA_CITY:市代码; AREA_DIST:区县代码;
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("area_type")]
|
||
|
|
public string AreaType { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 区域代码 省市区代码,国标码,详见国家统计局数据,
|
||
|
|
/// <a
|
||
|
|
/// href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls?spm=a219a.7395905.0.0.IwSSLe&file=2016.xls">
|
||
|
|
/// 点此下载
|
||
|
|
/// </a>
|
||
|
|
/// 。
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("code")]
|
||
|
|
public string Code { get; set; }
|
||
|
|
}
|
||
|
|
}
|