Files
HTCloud/HT.Cloud.Code/LayUI/TableCols.cs
2023-03-03 16:07:50 +08:00

83 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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