using NPOI.POIFS.Storage; using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { public class AIPerviewItemDto { public string UniversityName { get; set; } public int Type { get; set; } public string LnstitutionalLevel { get; set; } public string Nature { get; set; } } /// /// 一键填报传入参数 /// public class OneSubmitGoRequest : BasePageRequest { public string subjecttype { get; set; } public string Name { get; set; } /// /// 起始分数 /// public int StartScore { get; set; } = 0; /// /// 结束分数 /// public int EndScore { get; set; } = 0; /// /// 批次类型名称(综合--文科 理科) /// //public string BatchTypeName { get; set; } = "综合"; /// ///批次名称 /// public string BatchName { get; set; } /// /// 选科组合 /// public string SubjectClaim { get; set; } /// /// 用户所在省份 /// public string Location { get; set; } /// /// 分数 /// public int Score { get; set; } /// /// 高考年份 /// public int Year { get; set; } /// /// 检索省份 /// public string Province { get; set; } ///// ///// 学科层次 1、本科,2、专科 ///// public int? SubjectLevel { get; set; } /// /// 办学性质 0、公办,1、民办,2中外合作,3 港澳台 /// public string Nature { get; set; } public string Ascription { get; set; } /// ///大学类型 综合,理工类,医学类... /// public string SchoolType { get; set; } /// /// 1专业到学校 2学校到专业 /// public int? SearchType { get; set; } /// /// 是否985 0、否,1、是 /// public int? _985 { get; set; } /// /// 是否211 0、否,1、是 /// public int? _211 { get; set; } /// /// 是否双一流 0、否,1、是 /// public int? Syl { get; set; } /// ///学校归属:教育部,上海市-湖北省 /// public string Ownership { get; set; } public string Major { get; set; } /// /// 请求来源 /// public string Scoure { get; set; } /// /// Web端不传 /// public int CustomerId { get; set; } } public class AIGOResponse { public int LowScoreRank { get; set; } /// /// 冲稳保 类型:冲2,稳1,保0 /// public int Type { get; set; } public int Percentage { get; set; } /// /// 排名 /// public string Rank { get; set; } public int UniversityId { get; set; } public string UniversityName { get; set; } public int _fcount { get; set; } public int _scount { get; set; } public int _tcount { get; set; } /// /// 院校分数线 /// public int _fscore { get; set; } public int _sscore { get; set; } public int _tscore { get; set; } /// /// 院校位次 /// public int _frank { get; set; } public int _srank { get; set; } public int _trank { get; set; } /// /// 全国统一招生代码 /// public string UniversityCode { get; set; } public string collegeCode { get; set; } public string AreaName { get; set; } public string _985 { get; set; } public string _211 { get; set; } /// /// /// public string _SYL { get; set; } /// /// 学校归属 /// public string Ownership { get; set; } /// /// 计划数 /// public int planCount { get; set; } /// /// AIGO /// public List iGoPlanMajorItems { get; set; } } public class AIGoPlanMajorItem { /// /// 计划数 /// public int planCount { get; set; } /// /// 学费 /// public string fee { get; set; } /// /// 专业代码 /// public string MajorCode { get; set; } /// /// 专业组 /// public string MajorGroup { get; set; } /// /// 专业名称 /// public string Major { get; set; } public string AcademicYear { get; set; } /// /// 专业备注 /// public string MajorRemark { get; set; } /// /// 选科组合 /// public string SubjectClam { get; set; } /// /// 冲稳保 /// public int Type { get; set; } /// /// 录取概率 /// public int Percentage { get; set; } /// /// /// public List PlanItems { get; set; } /// /// 招生计划Id /// public long PlanId { get; set; } } /// /// 一键填报返回值 /// public class OneSubmitGoResponse { public string AcademicYear { get; set; } public int LowScore { get; set; } public int LowScoreRank { get; set; } /// /// 冲稳保 类型:冲2,稳1,保0 /// public int Type { get; set; } /// /// 百分比 /// public int Percentage { get; set; } /// /// 排名 /// public string Rank { get; set; } public int UniversityId { get; set; } public string UniversityName { get; set; } /// /// 全国统一招生代码 /// public string UniversityCode { get; set; } public string collegeCode { get; set; } public string AreaName { get; set; } public string _985 { get; set; } public string _211 { get; set; } /// /// /// public string _SYL { get; set; } /// /// 计划数 /// public int planCount { get; set; } public string Ownership { get; set; } /// /// 学费 /// public string fee { get; set; } /// /// 专业代码 /// public string MajorCode { get; set; } /// /// 专业组 /// public string MajorGroup { get; set; } /// /// 专业名称 /// public string Major { get; set; } /// /// 专业备注 /// public string MajorRemark { get; set; } /// /// 选科组合 /// public string SubjectClam { get; set; } /// /// /// public List PlanItems { get; set; } /// /// 招生计划Id /// public int PlanId { get; set; } } public class PlanItem { public string Year { get; set; } public string PlanCount { get; set; } public string Count { get; set; } /// /// 位次 /// public string RankLine { get; set; } ///// ///// 最低分 ///// public string Scoreline { get; set; } } }