2020-06-19 23:06:33 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace AntDesign
|
|
|
|
|
{
|
|
|
|
|
public interface IColumn
|
|
|
|
|
{
|
|
|
|
|
public ITable Table { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsHeader { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsPlaceholder { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsColGroup { get; set; }
|
|
|
|
|
|
2020-08-01 23:45:48 +08:00
|
|
|
|
public int ColIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
public int RowIndex { get; }
|
2020-06-19 23:06:33 +08:00
|
|
|
|
|
|
|
|
|
public string Fixed { get; set; }
|
|
|
|
|
|
2020-08-01 23:45:48 +08:00
|
|
|
|
public int CacheKey { get; set; }
|
|
|
|
|
|
2020-06-19 23:06:33 +08:00
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Width { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|