using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayDataAiserviceCloudbusSchedualtaskAddModel Data Structure.
///
[Serializable]
public class AlipayDataAiserviceCloudbusSchedualtaskAddModel : 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; }
///
/// 下行场站配车数
///
[XmlElement("down_bus_cnt")]
public long DownBusCnt { get; set; }
///
/// 拓展参数
///
[XmlElement("ext_param")]
public string ExtParam { get; set; }
///
/// 线路id
///
[XmlElement("line_id")]
public string LineId { get; set; }
///
/// 商户ID
///
[XmlElement("partner_id")]
public string PartnerId { get; set; }
///
/// 排班任务
///
[XmlElement("task_name")]
public string TaskName { get; set; }
///
/// 排班
///
[XmlElement("time_table_pid")]
public string TimeTablePid { get; set; }
///
/// 上行场站配车数
///
[XmlElement("up_bus_cnt")]
public long UpBusCnt { get; set; }
}
}