namespace HT.Cloud.Code
{
///
/// LayUI Table 列
///
public class TableCols
{
///
/// 类型(normal(常规列)、checkbox(复选框)、radio(单选框)、numbers(序号)、space(空))
///
public string type { get; set; }
///
/// 字段
///
public string field { get; set; }
///
/// 标题
///
public string title { get; set; }
///
/// 宽度
///
public int? width { get; set; }
///
/// 最小宽度
///
public int? minWidth { get; set; }
///
/// 是否全选
///
public bool? LAY_CHECKED { get; set; }
///
/// 固定列
///
public string Fixed { get; set; }
///
/// 隐藏
///
public string hide { get; set; }
///
/// 排序
///
public bool? sort { get; set; }
///
/// 是否禁用拖到列
///
public bool? unresize { get; set; }
///
/// 样式
///
public string style { get; set; }
///
/// 对齐方式
///
public string align { get; set; }
///
/// 所占列数
///
public int? colspan { get; set; }
///
/// 所占行数
///
public int? rowspan { get; set; }
///
/// 绑定工具栏模板
///
public string toolbar { get; set; }
}
}