接口文件
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user