using System.ComponentModel.DataAnnotations; namespace TProduct.Model { /// /// /// public enum eSupplyCurrentPhase { /// /// 三相 /// [Display(Name = "三相")] 三相 = 3, /// /// 单相 /// [Display(Name = "单相")] 单相 = 1 } }