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.

40 lines
997 B

1 year ago
  1. using Shentun.Peis.OrganizationUnits;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Shentun.Peis.CustomerOrgs
  6. {
  7. public class CustomerOrgTreeChildDto
  8. {
  9. //组织Id
  10. public Guid Id { get; set; }
  11. //组织名称
  12. public string DisplayName { get; set; }
  13. //父节点Id
  14. public Guid? ParentId { get; set; }
  15. /// <summary>
  16. /// 用来做递归的 新用法
  17. /// </summary>
  18. public string Code { get; set; }
  19. /// <summary>
  20. /// 短名称
  21. /// </summary>
  22. public string ShortName { get; set; }
  23. /// <summary>
  24. /// 单位编码
  25. /// </summary>
  26. public string CustomerOrgCode { get; set; }
  27. /// <summary>
  28. /// 拼音简码
  29. /// </summary>
  30. public string SimpleCode { get; set; }
  31. public int DisplayOrder { get; set; }
  32. public List<CustomerOrgTreeChildDto> TreeChildren { get; set; }
  33. }
  34. }