30 lines
616 B
C#
30 lines
616 B
C#
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; }
|
|
|
|
/// <summary>
|
|
/// 生源地
|
|
/// </summary>
|
|
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; }
|
|
|
|
}
|
|
}
|