using System.ComponentModel.DataAnnotations; namespace IStation.Model { /// /// 监控状态 /// public enum eMonitorStatus { [Display(Name = "未开启")] Disable = 0, [Display(Name = "开启")] Enable = 1, } }