using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Position;
///
/// 岗位列表输出.
///
[SuppressSniffer]
public class PositionListOutput : TreeModel
{
///
/// 岗位名称.
///
public string fullName { get; set; }
///
/// 岗位编号.
///
public string enCode { get; set; }
///
/// 岗位类型.
///
public string type { get; set; }
///
/// 部门.
///
public string department { get; set; }
///
/// 有效标志.
///
public int? enabledMark { get; set; }
///
/// 创建时间.
///
public DateTime? creatorTime { get; set; }
///
/// 描述.
///
public string description { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
///
/// 图标.
///
public string icon { get; set; }
///
/// 组织Id.
///
public string organizeId { get; set; }
}