| 123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Volo.Abp.Application.Dtos;
- namespace BaseService.BaseData.OrganizationManagement.Dto
- {
- public class OrganizationDto : EntityDto<Guid>
- {
- public short CategoryId { get; set; }
- public Guid? Pid { get; set; }
- public string Name { get; set; }
- public string FullName { get; set; }
- public int Sort { get; set; }
- public bool Enabled { get; set; }
- public bool HasChildren { get; set; }
- public bool Leaf { get; set; }
- #region >扩展字段<
- public string Label { get; set; }
- #endregion
- }
- }
|