NewGaoKaoApi/New_College.Model/ViewModels/QualificationLineViewModel.cs

56 lines
1.1 KiB
C#

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
{
/// <summary>
/// 院校Id
/// </summary>
public int UId { get; set; }
/// <summary>
/// 年份
/// </summary>
public int Years { 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 string RecruitType { get; set; }
}
}