34 lines
653 B
C#
34 lines
653 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class BasePageRequest
|
|
{
|
|
public int PageIndex { get; set; } = 1;
|
|
|
|
public int PageSize { get; set; } = 10;
|
|
}
|
|
|
|
public class NameQuery
|
|
{
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
public class NameBaseQuery : BasePageRequest
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 本科/专科大类 1本科 2 专科
|
|
/// </summary>
|
|
public int Type { get; set; }
|
|
}
|
|
|
|
public class XmlQuery
|
|
{
|
|
public string xml { get; set; }
|
|
}
|
|
}
|