32 lines
675 B
C#
32 lines
675 B
C#
using New_College.Model.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Request
|
|
{
|
|
public class SelectionServiceRequest : BasePageRequest
|
|
{
|
|
public string UniversityName { get; set; }
|
|
|
|
public string MajorName { get; set; }
|
|
|
|
public string Location { get; set; }
|
|
|
|
public int Years { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class SelectionRequest
|
|
{
|
|
|
|
/// <summary>
|
|
/// 这里
|
|
/// </summary>
|
|
public string LocationCode { get; set; }
|
|
public List<string> UniversityName { get; set; }
|
|
public List<string> MajorName { get; set; }
|
|
}
|
|
}
|