34 lines
489 B
C#
34 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class ScoreLineQueryDto
|
|
{
|
|
|
|
/// <summary>
|
|
///年份
|
|
/// </summary>
|
|
public string Years { get; set; }
|
|
|
|
/// <summary>
|
|
/// 省份
|
|
/// </summary>
|
|
public string Pronvice { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 分数
|
|
/// </summary>
|
|
public int Score { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|