| 1234567891011121314151617181920212223242526 |
- using SHJX.Service.Common.Utils;
- using shjxCamera;
- using System.Collections.Generic;
- namespace SHJX.Service.Common.Event
- {
- public class TitrationStatus
- {
- // 滴定单元
- public string TitrationUnit { get; set; }
- // 滴定状态
- public bool IsRunning { get; set; }
- // 任务标签
- public string TaskTag { get; set; }
- // 滴定滴数
- public int TitrationCount { get; set; }
- // 滴定体积
- public float TitrationVolume { get; set; }
- // 采样值
- public List<ColorPoint> SamplePoints { get; set; }
- }
- }
|