using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WGShare.Domain.Enums { /// /// /// public enum SubjectType { /// /// 全部科目 /// [Description("全部科目")] All = 0, /// /// 语文 /// [Description("语文")] Chinese = 1, /// /// 数学 /// [Description("数学")] Math = 2, /// /// 英语 /// [Description("英语")] English = 3, /// /// 物理 /// [Description("物理")] Physical = 4, /// /// 化学 /// [Description("化学")] Chemical = 5, /// /// 生物 /// [Description("生物")] Biological = 6, /// /// 政治 /// [Description("政治")] Political = 7, /// /// 历史 /// [Description("历史")] History = 8, /// /// 地理 /// [Description("地理")] Geographic = 9 } }