using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XS_Model { /// /// T_BASE_ROUTE实体类 /// [Serializable] public class T_BASE_ROUTE { /// /// 路径编号(主键) /// public decimal F_RouteID { get; set; } /// /// 路径描述 /// public string F_RouteName { get; set; } /// /// 路径起点设备编号 /// public decimal? F_StartDevice { get; set; } /// /// 路径终点设备编号 /// public decimal? F_EndDevice { get; set; } /// /// 路径类型:1入库;2出库;3移库 /// public int? F_RouteKind { get; set; } /// /// 巷道外最后一个可变更路径的设备 /// public int? F_OutsideAltDevice { get; set; } /// /// 巷道内最后一个可变更路径的设备 /// public int? F_InsideAltDevice { get; set; } /// /// 路径状态:1可用;0有设备发生故障禁止使用 /// public int? F_Status { get; set; } /// /// 是否自动更新路径状态:1自动更新(F_Status==1时必须设为1),0人工设定 /// public string F_AutoUpdate { get; set; } } }