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