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.

39 lines
981 B

3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Volo.Abp.Application.Dtos;
  5. namespace Shentun.Peis.OrganizationUnits
  6. {
  7. public class OrganizationUnitsDto : FullAuditedEntityDto<Guid>
  8. {
  9. public Guid? TenantId { get; set; }
  10. //
  11. // 摘要:
  12. // Parent Volo.Abp.Identity.OrganizationUnit Id. Null, if this OU is a root.
  13. public Guid? ParentId { get; set; }
  14. //
  15. // 摘要:
  16. // Hierarchical Code of this organization unit. Example: "00001.00042.00005". This
  17. // is a unique code for an OrganizationUnit. It's changeable if OU hierarchy is
  18. // changed.
  19. public string Code { get; set; }
  20. //
  21. // 摘要:
  22. // Display name of this OrganizationUnit.
  23. public string DisplayName { get; set; }
  24. /// <summary>
  25. /// 是否为体检中心
  26. /// </summary>
  27. public char IsPeis { get; set; }
  28. }
  29. }