namespace Admin.Core.Service.Personnel.Organization.Input { /// /// 添加 /// public class OrganizationAddInput { /// /// 父级 /// public long ParentId { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 值 /// public string Value { get; set; } /// /// 主管 /// public long? PrimaryUserId { get; set; } /// /// 员工人数 /// public int EmployeeCount { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 启用 /// public bool Enabled { get; set; } } }