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.
63 lines
1.4 KiB
63 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc.Html;
|
|
using QMFrameWork.WebUI;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
|
|
namespace QMAPP.Common.Web.Models
|
|
{
|
|
/// <summary>
|
|
/// 查询列模型
|
|
/// 创建者:李炳海
|
|
/// 创建日期:2014.8.13
|
|
/// </summary>
|
|
public class TemplateColumnModel
|
|
{
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
public int SEQ { get; set; }
|
|
|
|
/// <summary>
|
|
/// 列名
|
|
/// </summary>
|
|
public string COLUMNNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 列标签
|
|
/// </summary>
|
|
public string COLUMNLABEL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否显示
|
|
/// </summary>
|
|
public string CBXDISPLAY { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否排序
|
|
/// </summary>
|
|
public string CBXSOETENABLE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否过滤
|
|
/// </summary>
|
|
public string CBXFILTERENABLE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 宽度
|
|
/// </summary>
|
|
public int WIDTH { get; set; }
|
|
|
|
/// <summary>
|
|
/// 对齐方式
|
|
/// </summary>
|
|
public string DATAALIGN { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否锁定
|
|
/// </summary>
|
|
public string CBXISFROZEN { get; set; }
|
|
}
|
|
}
|