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.
31 lines
668 B
31 lines
668 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace QMAPP.Common.Web.Models
|
|
{
|
|
/// <summary>
|
|
/// 查询排序模型
|
|
/// 创建者:李炳海
|
|
/// 创建日期:2014.8.19
|
|
/// </summary>
|
|
[Serializable]
|
|
public class TemplateSortModel
|
|
{
|
|
/// <summary>
|
|
/// 字段名
|
|
/// </summary>
|
|
public string COLUMNNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字段标签
|
|
/// </summary>
|
|
public string COLUMNLABEL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序方式
|
|
/// </summary>
|
|
public string SORTMODE { get; set; }
|
|
}
|
|
}
|