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 System.Text;using Volo.Abp.Application.Dtos;
namespace Shentun.Peis.OrganizationUnits{
public class OrganizationUnitsDto : FullAuditedEntityDto<Guid> { public Guid? TenantId { get; set; }
//
// 摘要:
// Parent Volo.Abp.Identity.OrganizationUnit Id. Null, if this OU is a root.
public Guid? ParentId { get; set; }
//
// 摘要:
// Hierarchical Code of this organization unit. Example: "00001.00042.00005". This
// is a unique code for an OrganizationUnit. It's changeable if OU hierarchy is
// changed.
public string Code { get; set; }
//
// 摘要:
// Display name of this OrganizationUnit.
public string DisplayName { get; set; }
/// <summary>
/// 是否为体检中心
/// </summary>
public char IsPeis { get; set; } }
}
|