44 lines
876 B
C#
44 lines
876 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core.Service;
|
|
public class SelectionRequest: PageBaseRequest
|
|
{
|
|
public string UniversityName { get; set; }
|
|
|
|
public string MajorName { get; set; }
|
|
|
|
public string Location { get; set; }
|
|
|
|
public int Years { get; set; }
|
|
|
|
}
|
|
|
|
public class SelectionRequestDto
|
|
{
|
|
|
|
/// <summary>
|
|
/// 这里
|
|
/// </summary>
|
|
public string LocationCode { get; set; }
|
|
public List<string> UniversityName { get; set; }
|
|
public List<string> MajorName { get; set; }
|
|
}
|
|
|
|
public class SelectionResponseDto
|
|
{
|
|
|
|
public string MajorName { get; set; }
|
|
public List<SelectResponseDto> selects { get; set; }
|
|
|
|
}
|
|
|
|
public class SelectResponseDto
|
|
{
|
|
public string UniversityName { get; set; }
|
|
public string Selection { get; set; }
|
|
|
|
} |