using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayOpenAppAppcontentPoiSyncModel Data Structure. /// [Serializable] public class AlipayOpenAppAppcontentPoiSyncModel : AopObject { /// /// 具体地址的描述 /// [XmlElement("address")] public string Address { get; set; } /// /// 支付宝端内小程序地址 /// [XmlElement("alipay_url")] public string AlipayUrl { get; set; } /// /// 高德标准的POI ID /// [XmlElement("amap_poi_id")] public string AmapPoiId { get; set; } /// /// 应用内容属性 /// [XmlArray("attributes")] [XmlArrayItem("attribute")] public List Attributes { get; set; } /// /// 业务来源,如“社区生活”。 商户申请/调试接口过程中,由支付宝侧业务接口人分配确认。 /// [XmlElement("biz_source")] public string BizSource { get; set; } /// /// 业务唯一ID,APPID视角下唯一。支付宝侧会通过biz_source + appId + biz_unique_id作为联合主键,进行相应的创建或者更新操作。 /// [XmlElement("biz_unique_id")] public string BizUniqueId { get; set; } /// /// 联系人名称 /// [XmlElement("contact_name")] public string ContactName { get; set; } /// /// 联系电话 /// [XmlElement("contact_tele")] public string ContactTele { get; set; } /// /// 维度 /// [XmlElement("latitude")] public string Latitude { get; set; } /// /// poi的logo/头像 /// [XmlElement("logo")] public string Logo { get; set; } /// /// 经度 /// [XmlElement("longitude")] public string Longitude { get; set; } /// /// 具体的地点名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 逗号分隔的图片数组,最多5个 /// [XmlArray("photos")] [XmlArrayItem("string")] public List Photos { get; set; } } }