using System; using System.ComponentModel.DataAnnotations; using Volo.Abp.Application.Dtos; namespace Sanhe.Abp.Identity.Dto { public class OrganizationUnitGetChildrenDto : IEntityDto { /// /// Id /// [Required] public Guid Id { get; set; } /// /// 是否递归查询 /// public bool Recursive { get; set; } } }