| 123456789101112131415161718192021222324252627282930 | 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; }        /// <summary>        /// WCS系统        /// </summary>        //public string PLC_WCSSYSTEM { get; set; }        public string ROUTE_SONPOS { get; set; }        /// <summary>        /// 是否终点        /// </summary>        public bool ISEND { get; set; }    }}
 |