You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
851 B
C#

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