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

73 lines
3.2 KiB
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoCplifeCommunityCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeCommunityCreateModel : AopObject
{
/// <summary>
/// 若开发者录入的物业小区需要精确对应地图上多个小区比如物业系统中的小区包含类似一期二期、或东区西区的组团结构以便后续线上推广时覆盖到对应小区的住户可以指定关联的高德地图中住宅、住宿或地名地址等小区相关类型的POI地图兴趣点ID列表。
/// 若传入该参数且参数值合法,则该参数的优先级高于传入的地理位置经纬度。 注最多包含10组poiid。 高德POI ID的获取接口
/// http://lbs.amap.com/api/webservice/guide/api/search/
/// </summary>
[JsonProperty("associated_pois")]
public List<string> AssociatedPois { get; set; }
/// <summary>
/// 地级市编码,国标码,详见国家统计局数据 <a href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls">点此下载</a>。
/// </summary>
[JsonProperty("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 小区主要详细地址,不需要包含省市区名称。
/// </summary>
[JsonProperty("community_address")]
public string CommunityAddress { get; set; }
/// <summary>
/// 小区所在的经纬度列表(注:需要是高德坐标系),每对经纬度用"|"分隔经度在前纬度在后经纬度小数点后不超过6位。 注若新建的小区覆盖多个片区最多包含5组经纬度其中第一组作为主经纬度。
/// 经纬度是小区搜索和用户推广的重要参数,录入时请确保经纬度参数准确。 高德经纬度查询接口http://lbs.amap.com/api/webservice/guide/api/search/
/// 高德坐标系转换接口http://lbs.amap.com/api/webservice/guide/api/convert/
/// </summary>
[JsonProperty("community_locations")]
public List<string> CommunityLocations { get; set; }
/// <summary>
/// 小区名称最长不超过32个字符。
/// </summary>
[JsonProperty("community_name")]
public string CommunityName { get; set; }
/// <summary>
/// 区县编码,国标码,详见国家统计局数据 <a href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls">点此下载</a>。
/// </summary>
[JsonProperty("district_code")]
public string DistrictCode { get; set; }
/// <summary>
/// 需要提供物业服务热线或联系电话,便于用户在需要时联系物业。
/// </summary>
[JsonProperty("hotline")]
public string Hotline { get; set; }
/// <summary>
/// 小区在物业系统中的唯一编号。
/// </summary>
[JsonProperty("out_community_id")]
public string OutCommunityId { get; set; }
/// <summary>
/// 省份编码,国标码,详见国家统计局数据 <a href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls">点此下载</a>。
/// </summary>
[JsonProperty("province_code")]
public string ProvinceCode { get; set; }
}
}