using System.ComponentModel.DataAnnotations; namespace TProduct.Model { /// /// 测试类型 /// public enum eTestType { /// /// 未知 /// [Display(Name = "未知")] UnKonw = 0, /// /// 性能测试 /// [Display(Name = "性能测试")] FeatTest = 1, /// /// 汽蚀测试 /// [Display(Name = "汽蚀测试")] NpshTest = 2, /// /// 温升测试 /// [Display(Name = "温升测试")] TempTest = 3, /// /// /// [Display(Name = "堵转测试")] StallTest = 4, /// /// 空载测试 /// [Display(Name = "空载测试")] NoLoadTest = 5, //MotorLoadTest = 6,//电机负载测试 /// /// 性能测试和电机负载测试 /// [Display(Name = "性能测试和电机负载测试")] FeatAndMotorLoadTest = 7, /// /// 阀门测试 /// [Display(Name = "阀门测试")] ValveTest = 8 } }