using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.OrganizeAdministrator;
///
/// 机构分级管理输出.
///
[SuppressSniffer]
public class OrganizeAdministratorInfoOutput
{
///
/// 自然主键.
///
public string id { get; set; }
///
/// 用户主键.
///
public string userId { get; set; }
///
/// 机构主键.
///
public string organizeId { get; set; }
///
/// 机构类型.
///
public string organizeType { get; set; }
///
/// 本层添加.
///
public int thisLayerAdd { get; set; }
///
/// 本层编辑.
///
public int thisLayerEdit { get; set; }
///
/// 本层删除.
///
public int thisLayerDelete { get; set; }
///
/// 子层添加.
///
public int subLayerAdd { get; set; }
///
/// 子层编辑.
///
public int subLayerEdit { get; set; }
///
/// 子层删除.
///
public int subLayerDelete { get; set; }
///
/// 描述.
///
public string description { get; set; }
}