WCS_SRM521.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System.Runtime.Serialization;
  2. namespace WCS.Protocol.SX.SRM
  3. {
  4. /// <summary>
  5. /// SRM521
  6. /// </summary>
  7. [DataContract]
  8. public class WCS_SRM521 : ISRM521
  9. {
  10. public int TaskID1 { get;set; }
  11. public short SRow1 { get;set; }
  12. public short SCol1 { get;set; }
  13. public short SLayer1 { get;set; }
  14. public short Cancel1 { get;set; }
  15. public short ERow1 { get;set; }
  16. public short ECol1 { get;set; }
  17. public short ELayer1 { get;set; }
  18. public short EDepth1 { get;set; }
  19. public int FinishedTaskID1 { get;set; }
  20. public int ForkPos1 { get;set; }
  21. public int TaskID2 { get;set; }
  22. public short SRow2 { get;set; }
  23. public short SCol2 { get;set; }
  24. public short SLayer2 { get;set; }
  25. public short Cancel2 { get;set; }
  26. public short ERow2 { get;set; }
  27. public short ECol2 { get;set; }
  28. public short ELayer2 { get;set; }
  29. public short EDepth2 { get;set; }
  30. public int FinishedTaskID2 { get;set; }
  31. public int ForkPos2 { get;set; }
  32. public SrmMode Mode { get;set; }
  33. public SrmRunStatus Status { get;set; }
  34. public short Alarm { get;set; }
  35. public short Row { get;set; }
  36. public short Col { get;set; }
  37. public short Layer { get;set; }
  38. public int TravelPos { get;set; }
  39. public int LiftPos { get;set; }
  40. public float TotalKM { get;set; }
  41. public float RunTime { get;set; }
  42. public short VoucherNo { get;set; }
  43. }
  44. }