Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AreaCode.cs

29 lines
785 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
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; }
}
}