79 lines
2.1 KiB
C#
79 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core
|
|
{
|
|
/// <summary>
|
|
/// 基础批次表
|
|
/// </summary>
|
|
[SugarTable(null, "基础批次表")]
|
|
[SysTable]
|
|
public class BusBatchBase : EntityBase
|
|
{
|
|
[SugarColumn(ColumnDescription = "省份Code", Length = 100)]
|
|
public string ProvinceCode { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "省份", Length = 100)]
|
|
public string ProvinceName { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "年份")]
|
|
public int Year { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 批次名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "批次名称", Length = 100)]
|
|
public string Batch { get; set; }
|
|
|
|
/// <summary>
|
|
/// 综合(默认不管)
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "类型", Length = 100)]
|
|
public string Course { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批次类型(提前/普通)
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "批次类型", Length = 100)]
|
|
public string BatchType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批次分
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "批次分")]
|
|
public int Score { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批次最低分
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "批次最低分")]
|
|
public int MinScore { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批次最高分
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "批次最高分")]
|
|
public int MaxScore { get; set; }
|
|
|
|
/// <summary>
|
|
/// 压力分
|
|
/// </summary>
|
|
|
|
[SugarColumn(ColumnDescription = "压力分")]
|
|
public int PressureScore { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 压力分区间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "压力分区间")]
|
|
public string PressureRange { get; set; }
|
|
}
|
|
}
|
|
|