| 1234567891011121314151617181920212223242526 | using SqlSugar;using System;using System.Collections.Generic;using System.Text;namespace  WCS_Client{    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; }        public string ROUTE_SONPOS { get; set; }        /// <summary>        /// 是否终点        /// </summary>        public bool ISEND { get; set; }    }}
 |