using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model
{
public class QualificationLineRequest
{
public int Uid { get; set; }
public int? Year { get; set; }
public string BatchName { get; set; }
}
public class QualificationLineResponse
{
///
/// 院校Id
///
public int UId { get; set; }
///
/// 年份
///
public int Years { get; set; }
///
/// 批次
///
public string BatchName { get; set; }
///
/// 最低分
///
public int LowScore { get; set; }
///
/// 最低分排名
///
public int LowScoreRank { get; set; }
///
/// 省控线
///
public int ProvinceScore { get; set; }
///
/// 招生类型
///
public string RecruitType { get; set; }
}
}