NewGaoKaoApi/New_College.Model/Models/D_UniversityRank.cs

42 lines
974 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}