using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySocialAntsportsCurrentpathQueryModel Data Structure. /// [Serializable] public class AlipaySocialAntsportsCurrentpathQueryModel : AopObject { /// /// 日期。格式yyyy-MM-dd /// [XmlElement("day")] public string Day { get; set; } /// /// 路线场景 /// [XmlElement("path_scene")] public string PathScene { get; set; } /// /// 路线归属站点编码 /// [XmlElement("path_station_code")] public string PathStationCode { get; set; } /// /// 路线归属站点名称 /// [XmlElement("path_station_name")] public string PathStationName { get; set; } /// /// 时区 /// [XmlElement("time_zone")] public string TimeZone { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }