NewGaoKaoApi/New_College.Model/Models/T_EnrollmentBatch.cs

49 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class T_EnrollmentBatch : EntityModel
{
/// <summary>
/// 省份id
/// </summary>
[SugarColumn(IsNullable = true)]
public int AreaId { get; set; }
/// <summary>
/// 省份名称
/// </summary>
[SugarColumn(IsNullable = true)]
public string AreaName { get; set; }
/// <summary>
/// 年份
/// </summary>
[SugarColumn(IsNullable = true)]
public int Year { get; set; }
[SugarColumn(IsNullable = true)]
public string Batch_name { get; set; }
/// <summary>
/// 本科1专科0其他-1
/// </summary>
[SugarColumn(IsNullable = true)]
public int Subjectlevel { get; set; }
/// <summary>
/// 文理 不分文理
/// </summary>
[SugarColumn(IsNullable = true)]
public string Type { get; set; }
/// <summary>
/// 批次分数线
/// </summary>
[SugarColumn(IsNullable = true)]
public int ScoreLine { get; set; }
}
}