using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Entity.Enum { /// /// 学校状态 /// public enum SchoolStatus { /// /// 启用 /// [Description("启用")] Enable = 1, /// /// 禁用 /// [Description("禁用")] Disable = 2 } }