34 lines
947 B
C#
34 lines
947 B
C#
using DocumentFormat.OpenXml.Drawing.Diagrams;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core;
|
|
|
|
|
|
[SugarTable(null, "院校排名")]
|
|
[SysTable]
|
|
public class BusUniversityRank: EntityBase
|
|
{
|
|
[SugarColumn(ColumnDescription = "高校名称", IsNullable = true)]
|
|
public string UniversityName { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "排名类型", IsNullable = true)]
|
|
public int? UniversityType { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "年份", IsNullable = true)]
|
|
public string Year { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "排名", IsNullable = true)]
|
|
public int Rank { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "得分", IsNullable = true)]
|
|
public string Score { get;set; }
|
|
|
|
[SugarColumn(ColumnDescription = "排序", IsNullable = true)]
|
|
public int OrderSort { get; set; }
|
|
|
|
}
|