NewGaoKaoApi/New_College.Model/Models/D_QualificationLine.cs

103 lines
2.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
//年份 学校 软科排名 科类 批次 最低分 最低分排名 省控线 全国统一招生代码 招生类型 学历类别 学校曾用名 生源地
/// <summary>
///各个省份投档资格线
/// </summary>
public class D_QualificationLine : EntityModel
{
/// <summary>
/// 院校Id
/// </summary>
public int UId { get; set; }
/// <summary>
/// 年份
/// </summary>
public int Years { get; set; }
/// <summary>
/// 学校
/// </summary>
public string UniversityName { get; set; }
/// <summary>
/// 软科排名
/// </summary>
public int Rank { get; set; }
/// <summary>
/// 科类
/// </summary>
public string SubjectType { get; set; }
/// <summary>
/// 批次
/// </summary>
public string BatchName { get; set; }
/// <summary>
/// 最低分
/// </summary>
public int LowScore { get; set; }
/// <summary>
/// 最低分排名
/// </summary>
public int LowScoreRank { get; set; }
/// <summary>
/// 省控线
/// </summary>
public int ProvinceScore { get; set; }
/// <summary>
/// 招生代码
/// </summary>
public int RecruitCode { get; set; }
/// <summary>
/// 招生类型
/// </summary>
public string RecruitType { get; set; }
/// <summary>
/// 学历类别
/// </summary>
public string EducationType { get; set; }
/// <summary>
/// 高校曾用名
/// </summary>
public string FormerName { get; set; }
/// <summary>
/// 生源地
/// </summary>
public string Location { get; set; }
/// <summary>
/// 专业组
/// </summary>
public string MajorGroup { get; set; }
}
}