PickDynamicTestResult.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace TeamAAS_VP.Models.Torque
  8. {
  9. public class PickDynamicTestResult:BindableBase
  10. {
  11. private int _Index;
  12. /// <summary>
  13. /// 序号
  14. /// </summary>
  15. public int Index
  16. {
  17. get { return _Index; }
  18. set { SetProperty(ref _Index, value); }
  19. }
  20. private DateTime _Timestamp;
  21. /// <summary>
  22. /// 时间戳
  23. /// </summary>
  24. public DateTime Timestamp
  25. {
  26. get { return _Timestamp; }
  27. set { SetProperty(ref _Timestamp, value); }
  28. }
  29. private bool _IsPickSuccess;
  30. public bool IsPickSuccess
  31. {
  32. get { return _IsPickSuccess; }
  33. set { SetProperty(ref _IsPickSuccess, value); }
  34. }
  35. private float _X_Position;
  36. public float X_Position
  37. {
  38. get { return _X_Position; }
  39. set { SetProperty(ref _X_Position, value); }
  40. }
  41. private float _Y_Position;
  42. public float Y_Position
  43. {
  44. get { return _Y_Position; }
  45. set { SetProperty(ref _Y_Position, value); }
  46. }
  47. private float _Z_Position;
  48. public float Z_Position
  49. {
  50. get { return _Z_Position; }
  51. set { SetProperty(ref _Z_Position, value); }
  52. }
  53. private double _CycleTime;
  54. /// <summary>
  55. /// 单次节拍
  56. /// </summary>
  57. public double CycleTime
  58. {
  59. get { return _CycleTime; }
  60. set { SetProperty(ref _CycleTime, value); }
  61. }
  62. }
  63. }