using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { public class D_Major : EntityModel { [SugarColumn(IsNullable = true)] public string Name { get; set; } /// /// 专业二级分类id /// [SugarColumn(IsNullable = true)] public int CategoryClass_Id { get; set; } /// /// 专业名称 /// [SugarColumn(IsNullable = true)] public string MajorName { get; set; } /// /// 教育部专业编号 /// [SugarColumn(IsNullable = true)] public string MajorCode { get; set; } /// /// 热度 /// [SugarColumn(IsNullable = true)] public decimal Hot { get; set; } /// /// 专业分类 1文科 2理科 3不区分 /// [SugarColumn(IsNullable = true)] public int Type { get; set; } } }