using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_University : EntityModel
{
[SugarColumn(IsNullable = true)]
public string Name { get; set; }
///
/// 省id
///
[SugarColumn(IsNullable = true)]
public int Area_Id { get; set; }
///
/// 省name
///
[SugarColumn(IsNullable = true)]
public string Area_Name { get; set; }
///
/// 排名
///
[SugarColumn(IsNullable = true)]
public int Rank { get; set; }
///
/// 创办时间
///
[SugarColumn(IsNullable = true)]
public string Build_Date { get; set; }
///
/// 办学性质 0、公办,1、民办,2中外合作,3 港澳台
///
[SugarColumn(IsNullable = true)]
public int Nature { get; set; }
///
/// 隶属于 1、教育部,2、省政府, 3 其他部委,4 军校
///
[SugarColumn(IsNullable = true)]
public int Ascription { get; set; }
///
///教育行政主管部门名称
///
[SugarColumn(IsNullable = true)]
public string AscriptionName { get; set; }
///
/// 学科层次 0、本科,1、专科
///
[SugarColumn(IsNullable = true)]
public int Subject_Level { get; set; }
///
/// 是否985 0、否,1、是
///
[SugarColumn(IsNullable = true)]
public int Nhef { get; set; }
///
/// 是否211 0、否,1、是
///
[SugarColumn(IsNullable = true)]
public int Sff { get; set; }
///
/// 是否双一流 0、否,1、是
///
[SugarColumn(IsNullable = true)]
public int Syl { get; set; }
///
/// 院校代码
///
[SugarColumn(IsNullable = true)]
public string UniversityCode { get; set; }
///
/// 强基计划
///
[SugarColumn(IsNullable = true)]
public int QJJH { get; set; }
///
/// 院士数
///
[SugarColumn(IsNullable = true)]
public int Academician_Count { get; set; }
///
/// 博士数
///
[SugarColumn(IsNullable = true)]
public int Doctorate_Count { get; set; }
///
/// 硕士数
///
[SugarColumn(IsNullable = true)]
public int Master_Count { get; set; }
///
/// 大学类型 0综合,1理工类,2医学类|3军事类|4语言类|5师范类|6财经类|7政法类|8民族类|9农林类|10艺术类|11体育类|12其他
///
[SugarColumn(IsNullable = true)]
public int Type { get; set; }
///
/// logo
///
[SugarColumn(IsNullable = true)]
public string Logo { get; set; }
///
/// 院校官网
///
[SugarColumn(IsNullable = true)]
public string Web { get; set; }
///
/// 高校地址
///
[SugarColumn(IsNullable = true)]
public string Address { get; set; }
///
/// 电话
///
[SugarColumn(IsNullable = true)]
public string Phone { get; set; }
///
/// 院校简介
///
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
public string Description { get; set; }
}
}