| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace TeamAAS_VP.Models.Torque
- {
- public class PickDynamicTestResult:BindableBase
- {
- private int _Index;
- /// <summary>
- /// 序号
- /// </summary>
- public int Index
- {
- get { return _Index; }
- set { SetProperty(ref _Index, value); }
- }
- private DateTime _Timestamp;
- /// <summary>
- /// 时间戳
- /// </summary>
- public DateTime Timestamp
- {
- get { return _Timestamp; }
- set { SetProperty(ref _Timestamp, value); }
- }
- private bool _IsPickSuccess;
- public bool IsPickSuccess
- {
- get { return _IsPickSuccess; }
- set { SetProperty(ref _IsPickSuccess, value); }
- }
- private float _X_Position;
- public float X_Position
- {
- get { return _X_Position; }
- set { SetProperty(ref _X_Position, value); }
- }
- private float _Y_Position;
- public float Y_Position
- {
- get { return _Y_Position; }
- set { SetProperty(ref _Y_Position, value); }
- }
- private float _Z_Position;
- public float Z_Position
- {
- get { return _Z_Position; }
- set { SetProperty(ref _Z_Position, value); }
- }
- private double _CycleTime;
- /// <summary>
- /// 单次节拍
- /// </summary>
- public double CycleTime
- {
- get { return _CycleTime; }
- set { SetProperty(ref _CycleTime, value); }
- }
- }
- }
|