using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayDataAiserviceCloudbusMetroodQueryModel Data Structure. /// [Serializable] public class AlipayDataAiserviceCloudbusMetroodQueryModel : AopObject { /// /// 接口版本号 /// [XmlElement("app_version")] public string AppVersion { get; set; } /// /// 市 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 结束时间 /// [XmlElement("end_date")] public string EndDate { get; set; } /// /// 进出站 0:进站 1:出站 /// [XmlElement("is_out")] public long IsOut { get; set; } /// /// 商户ID /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 开始年月 /// [XmlElement("start_date")] public string StartDate { get; set; } /// /// 站点名称 /// [XmlElement("station_id")] public string StationId { get; set; } /// /// 操作类型: 0:普通(默认) 1:潜在 /// [XmlElement("type")] public long Type { get; set; } } }