| | |
| | | { |
| | | [Category("通用配置")] |
| | | [Description("标准代码")] |
| | | public string Code { get; set; } |
| | | public virtual string Code { get; set; } |
| | | |
| | | [Category("通用配置")] |
| | | [Description("启用状态,true:启用;false:禁用")] |
| | |
| | | [Category("标准配置")] |
| | | [Description("标准值")] |
| | | [DisplayName("标准值")] |
| | | public float StandardValue { get; set; } |
| | | public double StandardValue { get; set; } |
| | | |
| | | [Category("标准配置")] |
| | | [Description("正公差")] |
| | | [DisplayName("正公差")] |
| | | public float Tolrenance_Positive { get; set; } |
| | | public double Tolrenance_Positive { get; set; } |
| | | |
| | | [Category("标准配置")] |
| | | [Description("负公差")] |
| | | [DisplayName("负公差")] |
| | | public float Tolrenance_Negative { get; set; } |
| | | public double Tolrenance_Negative { get; set; } |
| | | |
| | | protected float? actualValue = null; |
| | | protected double? actualValue = null; |
| | | [Browsable(false)] |
| | | [JsonIgnore] |
| | | public virtual float? ActualValue |
| | | public virtual double? ActualValue |
| | | { |
| | | get |
| | | { |
| | |
| | | |
| | | [Browsable(false)] |
| | | [JsonIgnore] |
| | | public bool MeasureResult { get; set; } = false; |
| | | public bool? MeasureResult { get; set; } = null; |
| | | |
| | | public virtual string GetCSVHead() |
| | | { |