using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
///
/// 一分一段|省份 年份 科类 分数 本段人数 累计人数
///
public class D_ScoreLine : EntityModel
{
///
/// 省份
///
public string Province { get; set; }
///
/// 年份
///
public string Years { get; set; }
///
/// 科类
///
public string Type { get; set; }
///
/// 分数
///
public string Score { get; set; }
///
/// 本段人数
///
public int Count { get; set; }
///
/// 累计人数
///
public int SumCount { get; set; }
}
}