using Model; using Model.Base; namespace Dto { public class SysDeptQueryDto : PagerInfo { public int? delFlag { get; set; } public string? deptName { get; set; } } public class SysDeptDto : SysBase { public long deptId { get; set; } public long parentId { get; set; } public string? ancestors { get; set; } public string? deptName { get; set; } public int orderNum { get; set; } public string? leader { get; set; } public string? phone { get; set; } public string? email { get; set; } public int status { get; set; } public int delFlag { get; set; } } }