TitrationStatus.cs 615 B

1234567891011121314151617181920212223242526
  1. using SHJX.Service.Common.Utils;
  2. using shjxCamera;
  3. using System.Collections.Generic;
  4. namespace SHJX.Service.Common.Event
  5. {
  6. public class TitrationStatus
  7. {
  8. // 滴定单元
  9. public string TitrationUnit { get; set; }
  10. // 滴定状态
  11. public bool IsRunning { get; set; }
  12. // 任务标签
  13. public string TaskTag { get; set; }
  14. // 滴定滴数
  15. public int TitrationCount { get; set; }
  16. // 滴定体积
  17. public float TitrationVolume { get; set; }
  18. // 采样值
  19. public List<ColorPoint> SamplePoints { get; set; }
  20. }
  21. }