using System;
using System.Collections.Generic;
using System.Text;
namespace CentralControl.BaseData
{
public class LinePreInfo
{
public int Id { get; set; }
///
/// 预设线路编码
///
public string LinePreNo{ get; set; }
///
/// 起始的总成线号
///
public string LineStartNo{ get; set; }
///
/// 终点的总装线号
///
public string LineEndNo{ get; set; }
///
/// 全程所需时间(秒)
///
public int AllNeedTime{ get; set; }
///
/// 运行方式
///
public int? RunType{ get; set; }
public virtual ICollection CarRealInfo { get; set; }
}
}