NewGaoKaoApi/New_College.Model/Models/SubjectSelection.cs

40 lines
834 B
C#

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace New_College.Model.Models
{
///<summary>
///
///</summary>
[SugarTable("SubjectSelection", "WMBLOG_MYSQL")]
public class SubjectSelection
{
public SubjectSelection()
{
}
[SugarColumn(IsPrimaryKey = true)]
public int Id { get; set; }
public string UniversityName { get; set; }
public string MajorName { get; set; }
public string Selection { get; set; }
public string IncludeMajor { get; set; }
public string Direction { get; set; }
public string AcademicYear { get; set; }
/// <summary>
/// 招生年份
/// </summary>
public int Year { get; set; }
public string Province { get; set; }
}
}