using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayDataAiserviceCloudbusOridestodGetModel Data Structure. /// [Serializable] public class AlipayDataAiserviceCloudbusOridestodGetModel : AopObject { /// /// 内部接口版本号 /// [XmlElement("app_version")] public string AppVersion { get; set; } /// /// 市 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 目的geo 列表 /// [XmlArray("dest_geo")] [XmlArrayItem("string")] public List DestGeo { get; set; } /// /// 结束时间 /// [XmlElement("end_date")] public string EndDate { get; set; } /// /// 起始geohash /// [XmlArray("ori_geo")] [XmlArrayItem("string")] public List OriGeo { get; set; } /// /// 商户ID /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 开始时间 /// [XmlElement("start_date")] public string StartDate { get; set; } } }