using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.ViewModels
{
public class ScoreLineQueryDto
{
///
///年份
///
public string Years { get; set; }
///
/// 省份
///
public string Pronvice { get; set; }
///
/// 分数
///
public int Score { get; set; }
public int? Type { get; set; }
}
}