NewGaoKaoApi/New_College.Model/ViewModels/Query/UniversityQuery.cs

68 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.ViewModels
{
public class UniversityQuery : BasePageRequest
{
public string Name { get; set; }
/// <summary>
/// 学科层次
/// </summary>
public int SubjectLevel { get; set; }
/// <summary>
/// 省市区名称
/// </summary>
public string AreaName { get; set; }
/// <summary>
/// 办学性质
/// </summary>
public int Nature { get; set; }
/// <summary>
/// 用户id
/// </summary>
public int CustomerId { get; set; }
/// <summary>
/// 学校类型
/// </summary>
public int Type { get; set; } = -1;
/// <summary>
/// 是否985 0、否1、是
/// </summary>
public int Nhef { get; set; } = -1;
/// <summary>
/// 是否211 0、否1、是
/// </summary>
public int Sff { get; set; } = -1;
/// <summary>
/// 是否双一流 0、否1、是
/// </summary>
public int Syl { get; set; } = -1;
}
public class UniversityRankQuery
{
/// <summary>
/// 院校类型 0校友会 1,武书连 2,软科 3,QS 4,U.S.News
/// </summary>
public int Type { get; set; }
}
public class UniversityIdQuery : BasePageRequest
{
public int Id { get; set; }
}
public class StringIdQuery
{
public string Id { get; set; }
}
}