1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| using System.Collections.Generic;
|
| namespace Bootstrap.Admin.Pages.Components
| {
| /// <summary>
| /// ITableHeader 接口
| /// </summary>
| public interface ITableHeader
| {
| /// <summary>
| /// 获取绑定字段显示名称方法
| /// </summary>
| IReadOnlyDictionary<string, object> AdditionalAttributes { get; set; }
|
| /// <summary>
| /// 获取绑定字段显示名称方法
| /// </summary>
| string GetDisplayName();
|
| /// <summary>
| /// 获取绑定字段信息方法
| /// </summary>
| string GetFieldName();
|
| /// <summary>
| /// 获得/设置 是否允许排序 默认为 false
| /// </summary>
| bool Sort { get; set; }
| }
| }
|
|