using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { public class D_UniversityRank : EntityModel { /// /// 院校名称 /// [SugarColumn(IsNullable = true)] public string UniversityName { get; set; } /// /// 类型(0,校友会 1,武书连 2,软科 3,QS 4,U.S.News) /// [SugarColumn(IsNullable = true)] public int UniversityType { get; set; } /// /// 年份 /// [SugarColumn(IsNullable = true)] public string Year { get; set; } /// /// 排名 /// [SugarColumn(IsNullable = true)] public int Rank { get; set; } /// /// 分数(没有就是--) /// public string Score { get; set; } } }