namespace WCS.Application;
///
/// PLC任务信息
///
public class PlcTaskInfo
{
///
/// IP地址
///
public string Ip { get; set; }
///
/// 起始工位
///
public string StartStation { get; set; }
///
/// 目标工位
///
public string EndStation { get; set; }
///
/// 起始排
///
public string StartPai { get; set; }
///
/// 起始列
///
public string StartLie { get; set; }
///
/// 起始层
///
public string StartCeng { get; set; }
///
/// 目标排
///
public string EndPai { get; set; }
///
/// 目标列
///
public string EndLie { get; set; }
///
/// 目标层
///
public string EndCeng { get; set; }
///
/// 起始巷道
///
public string StartRoadway { get; set; }
///
/// 目标巷道
///
public string EndRoadway { get; set; }
}