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
|
{
|
单独,
|
合并
|
}
|
|
}
|
}
|