using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels.Query { public class EnrollmentPlanRequest : BasePageRequest { public string UniversityName { get; set; } public string MajorName { get; set; } /// /// 生源地 /// public string Location { get; set; } public int AreaId { get; set; } public int Years { get; set; } public int PlanId { get; set; } public string BatchName { get; set; } public int BatchtypeId { get; set; } } }