ShakerStatusModel.cs 804 B

1234567891011121314151617181920212223242526
  1. 
  2. namespace Shaker.Model
  3. {
  4. public class ShakerStatusModel : BaseModel
  5. {
  6. public RTStatus RTStatus = RTStatus.Init;
  7. public bool Start = false;
  8. public bool IsTableRised = false;
  9. public bool IsTableDroped = false;
  10. public bool IsFaultRelease = false;
  11. public uint RiseCount = 0;
  12. public uint SignalGenStopCount = 0;
  13. public uint EmergencyStopCount = 0;
  14. public bool IsSignalGenStoped = false;
  15. public uint ZeroChangedCount = 0;
  16. public ushort WarnCode = 0;
  17. public float CurrentFrequency = 0;
  18. public bool ClosedValve = false;
  19. public uint DropCount = 0;
  20. public ushort ErrorCode = 0;
  21. public override object Clone()
  22. {
  23. return this.CloneBase();
  24. }
  25. }
  26. }