WCS_SC521.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.Serialization;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using SqlSugar;
  8. namespace WCS_Client.Frm
  9. {
  10. public class WCS_SC521
  11. {
  12. [SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
  13. public bool Handshake {get;set;}
  14. public bool GetFinishi {get;set;}
  15. public bool PutFinishi {get;set;}
  16. public bool Alarm {get;set;}
  17. public bool TaskFinishi {get;set;}
  18. public bool Loaded {get;set;}
  19. public bool ForkCenter {get;set;}
  20. public byte RES {get;set;}
  21. public SCMode Mode {get;set;}
  22. public SCRunStatus Status {get;set;}
  23. public short SLine {get;set;}
  24. public short SCol {get;set;}
  25. public short SLayer {get;set;}
  26. public short SDepth {get;set;}
  27. public short ELine {get;set;}
  28. public short ECol {get;set;}
  29. public short ELayer {get;set;}
  30. public short EDepth {get;set;}
  31. public int TaskID {get;set;}
  32. public short Trigger {get;set;}
  33. public short Line {get;set;}
  34. public short Col {get;set;}
  35. public short Layer {get;set;}
  36. public int FinishedTask {get;set;}
  37. public int TravelPos {get;set;}
  38. public int LiftPos {get;set;}
  39. public int ForkPos {get;set;}
  40. public short Tunnel {get;set;}
  41. public short Endnumber2 {get;set;}
  42. public float TotalKM {get;set;}
  43. public short GoodsType {get;set;}
  44. public float Runtime {get;set;}
  45. public string DEVICECODE { get; set; }
  46. public bool ISLAST { get; set; }
  47. }
  48. }