OrganizationDto.cs 667 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Volo.Abp.Application.Dtos;
  5. namespace BaseService.BaseData.OrganizationManagement.Dto
  6. {
  7. public class OrganizationDto : EntityDto<Guid>
  8. {
  9. public short CategoryId { get; set; }
  10. public Guid? Pid { get; set; }
  11. public string Name { get; set; }
  12. public string FullName { get; set; }
  13. public int Sort { get; set; }
  14. public bool Enabled { get; set; }
  15. public bool HasChildren { get; set; }
  16. public bool Leaf { get; set; }
  17. #region >扩展字段<
  18. public string Label { get; set; }
  19. #endregion
  20. }
  21. }