using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HStation.PBS { /// /// 供水单元 /// public enum eWaterSupply { [Display(Name = "低区")] Low = 0, [Display(Name = "中区")] Middle = 1, [Display(Name = "高区")] Height = 2 } }