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
691 B
31 lines
691 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
|
||
|
namespace QMAPP.Common.Web.Models
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 查询条件模型
|
||
|
/// 创建者:李炳海
|
||
|
/// 创建日期:2014.8.13
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public class TemplateWhereModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 查询字段名
|
||
|
/// </summary>
|
||
|
public string QUERYCOLUMN { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 查询字段名标签
|
||
|
/// </summary>
|
||
|
public string QUERYCOLUMNLABEL { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 是否显示
|
||
|
/// </summary>
|
||
|
public string ISDISPLAY { get; set; }
|
||
|
}
|
||
|
}
|