WCS_RGV521.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace WCS_Client.Frm
  6. {
  7. public class WCS_RGV521
  8. {
  9. public int ID { get; set; }
  10. public int TaskID {get;set;}
  11. public RGVTaskType TaskType {get;set;}
  12. public short StartPosition {get;set;}
  13. public short DestPosition {get;set;}
  14. public RGVMode WorkMode { get; set; }
  15. public short PRIORITY {get;set;}
  16. public RGVRunStatus SystemStatus { get; set; }
  17. public short ACT_V {get;set;}
  18. public short RES2 {get;set;}
  19. public bool PH_Status {get;set;}
  20. public bool ToSition {get;set;}
  21. public bool Finish{get;set;}
  22. public string DEVICECODE { get; set; }
  23. public short RES {get;set;}
  24. public bool ISLAST { get; set; }
  25. public float Position {get;set;}
  26. public float Mileage {get;set;}
  27. public float Runtime {get;set;}
  28. public enum RGVRunStatus : short
  29. {
  30. 空闲 = 1,
  31. 取货移动 = 2,
  32. 取货 = 3,
  33. 放货移动 = 4,
  34. 放货 = 5
  35. }
  36. public enum RGVMode : short
  37. {
  38. 自动 = 1,
  39. 半自动 = 2,
  40. 手动 = 3,
  41. 维护 = 4
  42. }
  43. public enum RGVTaskType : short
  44. {
  45. 搬运 = 1,
  46. 移动 = 3
  47. }
  48. }
  49. }