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