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 Shentun.Peis.OrganizationUnits;using System;using System.Collections.Generic;using System.Text;
namespace Shentun.Peis.CustomerOrgs{ public class CustomerOrgTreeChildDto { //组织Id
public Guid Id { get; set; } //组织名称
public string DisplayName { get; set; } //父节点Id
public Guid? ParentId { get; set; } /// <summary>
/// 用来做递归的 新用法
/// </summary>
public string Code { get; set; }
/// <summary>
/// 短名称
/// </summary>
public string ShortName { get; set; }
/// <summary>
/// 单位编码
/// </summary>
public string CustomerOrgCode { get; set; }
/// <summary>
/// 拼音简码
/// </summary>
public string SimpleCode { get; set; }
public int DisplayOrder { get; set; }
public List<CustomerOrgTreeChildDto> TreeChildren { get; set; } }}
|