using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayDataAiserviceCloudbusScheduletasklistQueryModel Data Structure. /// [Serializable] public class AlipayDataAiserviceCloudbusScheduletasklistQueryModel : AopObject { /// /// 接口版本 /// [XmlElement("app_version")] public string AppVersion { get; set; } /// /// 市 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 公交公司id /// [XmlElement("corp_id")] public string CorpId { get; set; } /// /// 任务类型: 枚举: 0:客流接口 1: 时刻表接口 2:排班接口 3:轮班接口 /// [XmlElement("type")] public long Type { get; set; } } }