using System.ComponentModel.DataAnnotations; namespace IStation.Model { /// /// 来源类型 /// public enum eSourceType { [Display(Name = "对接")] Docking = 0, [Display(Name = "分析")] Analyse = 1, [Display(Name = "录入")] Input = 2, } }