接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -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; }
}
}