Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

60 lines
2.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AddressInfo Data Structure.
/// </summary>
[Serializable]
public class AddressInfo : AopObject
{
/// <summary>
/// 商户详细经营地址
/// </summary>
[JsonProperty("address")]
public string Address { get; set; }
/// <summary>
/// 商户所在城市编码,城市编码是与国家统计局一致,请查询: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/
/// 国标省市区号下载http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls?spm=a219a.7629140.0.0.qRW4KQ&file
/// =2016.xls
/// </summary>
[JsonProperty("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 商户所在区县编码,区县编码是与国家统计局一致,请查询: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/
/// 国标省市区号下载http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls?spm=a219a.7629140.0.0.qRW4KQ&file
/// =2016.xls
/// </summary>
[JsonProperty("district_code")]
public string DistrictCode { get; set; }
/// <summary>
/// 纬度,浮点型,小数点后最多保留6位 如需要录入经纬度请以高德坐标系为准录入时请确保经纬度参数准确。高德经纬度查询http://lbs.amap.com/console/show/picker
/// </summary>
[JsonProperty("latitude")]
public string Latitude { get; set; }
/// <summary>
/// 经度,浮点型, 小数点后最多保留6位。 如需要录入经纬度请以高德坐标系为准录入时请确保经纬度参数准确。高德经纬度查询http://lbs.amap.com/console/show/picker
/// </summary>
[JsonProperty("longitude")]
public string Longitude { get; set; }
/// <summary>
/// 商户所在省份编码, 省份编码是与国家统计局一致,请查询: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/
/// 国标省市区号下载http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls?spm=a219a.7629140.0.0.qRW4KQ&file
/// =2016.xls
/// </summary>
[JsonProperty("province_code")]
public string ProvinceCode { get; set; }
/// <summary>
/// 地址类型。取值范围BUSINESS_ADDRESS经营地址默认
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
}
}