using System.ComponentModel.DataAnnotations; namespace YLErp.DBModels { /// /// 是否同业 /// public enum SamePeerEnum { [Description("同业")] [Display(Name = "同业")] IsSamePeer = 0, [Description("非同业")] [Display(Name = "非同业")] NotSamePeer = 1, } }