using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class T_Batchline : EntityModel
{
///
/// 省份id
///
[SugarColumn(IsNullable = true)]
public int AreaId { get; set; }
///
/// 省份名称
///
[SugarColumn(IsNullable = true)]
public string AreaName { get; set; }
///
/// 学界
///
[SugarColumn(IsNullable = true)]
public int Year { get; set; }
///
/// 分数
///
[SugarColumn(IsNullable = true)]
public int Average { get; set; }
///
/// 类型
///
[SugarColumn(IsNullable = true)]
public string Type_name { get; set; }
///
/// 批次名称
///
[SugarColumn(IsNullable = true)]
public string Batch_name { get; set; }
}
}