using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AreaCode Data Structure.
///
[Serializable]
public class AreaCode : AopObject
{
///
/// 区域类型 AREA_PRVN:省代码; AREA_CITY:市代码; AREA_DIST:区县代码;
///
[JsonProperty("area_type")]
public string AreaType { get; set; }
///
/// 区域代码 省市区代码,国标码,详见国家统计局数据,
///
/// 点此下载
///
/// 。
///
[JsonProperty("code")]
public string Code { get; set; }
}
}