领胜LDS 键盘AOI检测项目
wells.liu
2020-06-29 c339e592f9232e460602093cb3248adf2484eebb
src/Bro.Common.Model/Model/Spec.cs
@@ -15,7 +15,7 @@
    {
        [Category("通用配置")]
        [Description("标准代码")]
        public string Code { get; set; }
        public virtual string Code { get; set; }
        [Category("通用配置")]
        [Description("启用状态,true:启用;false:禁用")]
@@ -25,22 +25,22 @@
        [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
            {
@@ -67,7 +67,7 @@
        [Browsable(false)]
        [JsonIgnore]
        public bool MeasureResult { get; set; } = false;
        public bool? MeasureResult { get; set; } = null;
        public virtual string GetCSVHead()
        {