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