using System; using System.Collections.Generic; using System.Text; namespace Model { public class MRoute { /// /// 路径编号 /// public decimal RouteID { get; set; } /// /// 路径名称 /// public string RouteName { get; set; } /// /// 起始设备 /// public decimal StartDevice { get; set; } /// /// 终止设备 /// public decimal EndDevice { get; set; } /// /// 路径类型:1入库,2出库,3倒库 /// public int RouteKind { get; set; } /// /// 巷道外可变更出入库方向的设备 /// public int OutsideAltDevice { get; set; } /// /// 巷道内可变更出入库方向的设备 /// public int InsideAltDevice { get; set; } /// /// 路径状态:0不可用,1可用 /// public int Status { get; set; } /// /// 是否可以自动更新路径状态 /// public char AutoUpdate { get; set; } } }