using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.Position;
///
/// 创建岗位输出.
///
[SuppressSniffer]
public class PositionCrInput
{
///
/// 岗位编号.
///
public string enCode { get; set; }
///
/// 机构ID.
///
public string organizeId { get; set; }
///
/// 有效标志.
///
public int? enabledMark { get; set; }
///
/// 岗位名称.
///
public string fullName { get; set; }
///
/// 描述.
///
public string description { get; set; }
///
/// 岗位类型.
///
public string type { get; set; }
///
/// 排序.
///
public long? sortCode { get; set; }
}