using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace WCS.PLC { public class WCS_EQUIPMENTROUTE { [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string ROUTE_ID { get; set; } public string ROUTE_STARTPOS { get; set; } public string ROUTE_NEXTPOS { get; set; } public string ROUTE_INOUTTYPE { get; set; } public string ROUTE_NOTES { get; set; } public int? SRMROW { get; set; } public int? SRMCOLUMN { get; set; } public int? SRMLAYER { get; set; } public int? DEPTH { get; set; } /// /// WCS系统 /// //public string PLC_WCSSYSTEM { get; set; } public string ROUTE_SONPOS { get; set; } /// /// 是否终点 /// public bool ISEND { get; set; } } }