tx
10 天以前 e0b138b3e057de6f57021e6c8963868f5c5acc5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System.ComponentModel.DataAnnotations;
 
namespace TProduct.Model
{
    public class TestGradeJudgeItem
    {
        public TestGradeJudgeItem() { }
        public TestGradeJudgeItem(string strStore)
        {
        }
 
        /// <summary>
        /// 标识
        /// </summary>
        [Display(Name = "标识")]
        public string ID { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        [Display(Name = "TargeType")]
        public eTestJudgeTargetType TargeType { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        [Display(Name = "阀值")]
        public double ThresholdValue { get; set; }
 
        /// <summary>
        /// 阀值类型
        /// </summary>
        [Display(Name = "类型")]
        public eThresholdType ThresholdType { get; set; }
 
        /// <summary>
        /// 判断类型
        /// </summary>
        [Display(Name = "判断类型")]
        public eJudgeType JudgeType { get; set; }
 
        public enum eThresholdType
        {
            Min,
            Max
        }
 
        public enum eJudgeType
        {
            单独,
            合并
        }
 
    }
}