// namespace SafeCampus.System; /// /// 组织树输出参数 /// public class PositionTreeOutput { /// /// 职位Id /// public long Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 是否是职位 /// public bool IsPosition { get; set; } /// /// 子项 /// public List Children { get; set; } = new List(); } /// /// 组织选择器输出参数 /// public class PositionSelectorOutput { /// /// 组织Id或者职位Id /// public long Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 子项 /// public List Children { get; set; } = new List(); }