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