using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { public class D_MajorMapUniversity : EntityModel { /// /// 院校id /// [SugarColumn(IsNullable = true)] public int Universityid { get; set; } /// /// 专业id /// [SugarColumn(IsNullable = true)] public int MajorId { get; set; } /// /// 是否为特殊专业,0为不是,1为是 /// [SugarColumn(IsNullable = true)] public int sp { get; set; } } }