TreeGridEntity.cs 495 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Lottomat.Util.WebControl
  6. {
  7. /// <summary>
  8. /// 树表格实体
  9. /// </summary>
  10. public class TreeGridEntity
  11. {
  12. public string parentId { get; set; }
  13. public string id { get; set; }
  14. public string text { get; set; }
  15. public string entityJson { get; set; }
  16. public bool expanded { get; set; }
  17. public bool hasChildren { get; set; }
  18. }
  19. }