| | |
| | | [Editor(typeof(ComplexCollectionEditor<MeasurementUnit>), typeof(UITypeEditor))] |
| | | public List<MeasurementUnit> MeasurementUnitCollection { get; set; } = new List<MeasurementUnit>(); |
| | | |
| | | [Category("检测设置")] |
| | | [Description("平面补偿值")] |
| | | [DisplayName("4.平面补偿值")] |
| | | public double PlanCompensation { get; set; } |
| | | |
| | | [Category("检测设置")] |
| | | [Description("数据精度设置")] |
| | | [DisplayName("5.数据精度位数")] |
| | | public int Precision { get; set; } = 3; |
| | | |
| | | //[Category("检测设置")] |
| | | //[DisplayName("结果数据保存路径")] |
| | | //[Description("检测结果数据保存路径")] |
| | |
| | | [Description("true:数据上传至MES false:数据不上传")] |
| | | [ReadOnly(true)] |
| | | public bool IsEnableMESUpload { get; set; } = false; |
| | | |
| | | [Category("复位设置")] |
| | | [Description("大复位需要信号持续时间,复位信号持续超出该时间执行大复位,单位:s")] |
| | | [DisplayName("大复位持续信号长度")] |
| | | public int FullResetRequiredDuration { get; set; } = 3; |
| | | } |
| | | } |