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.
31 lines
667 B
31 lines
667 B
1 year ago
|
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
|
||
|
}
|
||
|
}
|