tuiwucarrer/Admin.NET/Admin.NET.Core/Service/ZYBase/DTO/CombineRequestDto.cs

50 lines
978 B
C#

using MongoDB.Bson.Serialization.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Core.Service;
public class CombineRequestDto
{
/// <summary>
///
/// </summary>
public string KeyWord { get; set; }
}
public class CombinResponseDto
{
public List<CombinUniversityDto> universitys { get; set; }
public List<MajorSearchDto> majors { get; set; }
}
public class MajorSearchDto
{
public int Type { get; set; }
public string Name { get; set; }
public int Id { get; set; }
public string Code { get; set; }
}
public class CombinUniversityDto
{
public long _id { get; set; }
public string name { get; set; }
public string provinceName { get; set; }
public string cityName { get; set; }
public string logo { get; set; }
public string collegeCode { get; set; }
public List<string> utype { get; set; }
}