NewGaoKaoApi/New_College.Model/Models/SubjectSelection.cs

36 lines
726 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; }
public string Province { get; set; }
}
}