using System; using System.Linq; using System.Text; using SqlSugar; namespace New_College.Model.Models { /// /// /// [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; } } }