平安校园
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.
 
 
 
 
 
 

33 lines
457 B

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