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

18 lines
368 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.ViewModels
{
public class MajorcategoryQuery
{
/// <summary>
/// 办学层次 本科/专科大类 1本科 2 专科
/// </summary>
public int SchoolLevel { get; set; } = 1;
public string MajorName { get; set; }
}
}