using JNPF.DependencyInjection;
using JNPF.Systems.Entitys.Model.Organize;
using Newtonsoft.Json.Linq;
namespace JNPF.Systems.Entitys.Dto.Department;
///
/// 部门创建输入.
///
[SuppressSniffer]
public class DepartmentCrInput
{
///
/// 主管ID.
///
public string managerId { 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 JObject propertyJson { get; set; }
///
/// 排序码.
///
public long? sortCode { get; set; }
///
/// 组织类型
///
public string category { get; set; }
///
/// 组织类型名称
/// added by ly on 20230421
///
public string typeName { get; set; }
}