You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
810 B
34 lines
810 B
using System;
|
|
using System.Runtime.Serialization;
|
|
using Znyc.Recruitment.Admin.Commons.Pages;
|
|
|
|
namespace Znyc.Recruitment.Admin.AspNetCore.ViewModel
|
|
{
|
|
/// <summary>
|
|
/// 查询条件公共实体类
|
|
/// </summary>
|
|
[Serializable]
|
|
[DataContract]
|
|
public class SearchModel : PagerInfo
|
|
{
|
|
/// <summary>
|
|
/// 关键词
|
|
/// </summary>
|
|
public string Keywords { get; set; }
|
|
|
|
/// <summary>
|
|
/// 编码/代码
|
|
/// </summary>
|
|
public string EnCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序方式 默认asc
|
|
/// </summary>
|
|
public string Order { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序字段 默认Id
|
|
/// </summary>
|
|
public string Sort { get; set; }
|
|
}
|
|
}
|