using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { public class PlanMajorScoreLineRequest { public int Uid { get; set; } public int? Year { get; set; } public string BatchName { get; set; } } public class PlanMajorScoreLineResponse { /// /// 院校Id /// public int UId { get; set; } /// /// 年份 /// public int Years { get; set; } /// /// 批次 /// public string BatchName { get; set; } /// /// 选科要求 /// public string SelectSubject { get; set; } /// /// 一级学科 /// public string FirstType { get; set; } public string Major { get; set; } public string Remark { get; set; } /// /// 平均分 /// public string AvgScore { get; set; } /// /// 最高分 /// public string HighScore { get; set; } /// /// 最低分 /// public int LowScore { get; set; } /// /// 最低分排名 /// public int LowScoreRank { get; set; } /// /// 专业组 /// public string MajorGroup { get; set; } } }