using System; using System.Collections.Generic; using BaseService.RelationBaseData; using Volo.Abp.Application.Dtos; namespace BaseService.BaseData.BranchManagement.Dto { public class BranchDto : EntityDto { 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 public virtual ICollection Roles { get; set; } //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 //public virtual ICollection Roles { get; set; } } }