平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AntTableAttribute.cs 457 B

4 月之前
1234567891011121314151617181920212223242526272829303132
  1. 
  2. //
  3. namespace SafeCampus.System;
  4. /// <summary>
  5. /// 前端表格特性
  6. /// </summary>
  7. public class AntTableAttribute : Attribute
  8. {
  9. /// <summary>
  10. /// 是否是日期格式
  11. /// </summary>
  12. public bool IsDate { get; set; }
  13. /// <summary>
  14. /// 是否自动省略
  15. /// </summary>
  16. public bool Ellipsis { get; set; } = false;
  17. /// <summary>
  18. /// 宽度
  19. /// </summary>
  20. public int Width { get; set; } = 100;
  21. }