//
namespace SafeCampus.System;
///
/// 前端表格特性
///
public class AntTableAttribute : Attribute
{
///
/// 是否是日期格式
///
public bool IsDate { get; set; }
///
/// 是否自动省略
///
public bool Ellipsis { get; set; } = false;
///
/// 宽度
///
public int Width { get; set; } = 100;
}