using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace QMAPP.BoraUpgrade.Entity { /// /// 青岛宝来升级路由 /// public class T_QD_BoraUpgradeRoute { /// /// 主键 /// public int BoraRouteID { get; set; } /// /// 工作编号 /// public string WorkCell_Code { get; set; } /// /// 路由正规则 /// public string RouteRegular { get; set; } /// /// 下一跳路由 /// public string NextWorkCell_Code { get; set; } /// /// 机器编码 /// public string Machine_Code { get; set; } /// /// 路由方向 /// public int RouteDirection { get; set; } /// /// 是否产品码 /// public bool IsProductCode { get; set; } /// /// 是否清空 /// public bool IsClear { get; set; } /// /// 是否删除 /// public bool IsDeleted { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 模架号 /// public string ModeCode { get; set; } /// /// 空采集点数量 /// public int EmptyDAICount { get; set; } } }