using System.ComponentModel.DataAnnotations; namespace IStation.Model { /// /// 格式类型 /// public enum eFormatType { [Display(Name = "数值")] Numeric = 1, [Display(Name = "枚举")] Enum = 2, [Display(Name = "集合")] Array = 3, [Display(Name = "集成")] Integration = 4, [Display(Name = "文本")] Text = 5, [Display(Name = "图谱")] Curve = 6 } }