using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TProduct.Model { /// /// 测试类型 /// public enum eTestType { /// /// 泵测试 /// [Display(Name = "泵测试")] PumpTest = 0, /// /// 阀测试 /// [Display(Name = "阀测试")] Valve = 1, } }