WCS_EQUIPMENTROUTE.cs 920 B

1234567891011121314151617181920212223242526272829303132
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace WCS.PLC
  6. {
  7. public class WCS_EQUIPMENTROUTE
  8. {
  9. [SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
  10. public string ROUTE_ID { get; set; }
  11. public string ROUTE_STARTPOS { get; set; }
  12. public string ROUTE_NEXTPOS { get; set; }
  13. public string ROUTE_INOUTTYPE { get; set; }
  14. public string ROUTE_NOTES { get; set; }
  15. public int? SRMROW { get; set; }
  16. public int? SRMCOLUMN { get; set; }
  17. public int? SRMLAYER { get; set; }
  18. public int? DEPTH { get; set; }
  19. ///// <summary>
  20. ///// WCS系统
  21. ///// </summary>
  22. //public string PLC_WCSSYSTEM { get; set; }
  23. public string ROUTE_SONPOS { get; set; }
  24. /// <summary>
  25. /// 是否终点
  26. /// </summary>
  27. public bool ISEND { get; set; }
  28. }
  29. }