using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// InputScheduleLine Data Structure.
///
[Serializable]
public class InputScheduleLine : AopObject
{
///
/// 方向,参考方向枚举
///
[XmlElement("direction")]
public string Direction { get; set; }
///
/// 拓展参数
///
[XmlElement("ext_param")]
public string ExtParam { get; set; }
///
/// 线路id
///
[XmlElement("line_id")]
public string LineId { get; set; }
///
/// 聚合时间粒度,单位:分钟
///
[XmlElement("time_span")]
public long TimeSpan { get; set; }
}
}