using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Organize;
///
/// 机构信息输出 .
///
[SuppressSniffer]
public class OrganizeInfoOutput
{
///
/// id.
///
public string id { get; set; }
///
/// 上级id.
///
public string parentId { get; set; }
///
/// 集团名.
///
public string fullName { get; set; }
///
/// 集团编码.
///
public string enCode { get; set; }
///
/// 状态.
///
public int? enabledMark { get; set; }
///
/// 描述.
///
public string description { get; set; }
///
/// 公司详情.
///
public string propertyJson { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
///
/// 所属组织 组织树.
///
public List organizeIdTree { get; set; }
}