using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Position;
///
/// 岗位下拉框输出.
///
[SuppressSniffer]
public class PositionSelectorOutput : TreeModel
{
///
/// 岗位名称.
///
public string fullName { get; set; }
///
/// 图标.
///
public string icon { get; set; }
///
/// 有效标志.
///
public int? enabledMark { get; set; }
///
/// 岗位类型.
///
public string type { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
///
/// 组织树.
///
public string organizeIdTree { get; set; }
///
/// 组织树.
///
public string organize { get; set; }
}