using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using LearningOfficer.OA.Common.Dtos.OA.WorkProcess; namespace LearningOfficer.OA.Common.Dtos.School { public class SchoolTree { public long Id { get; set; } public string SchoolName { get; set; } public int Count { get; set; } = 0; public List? Users { get; set; } public List? Children { get; set; } } public class SchoolInfo { public long Id { get; set; } /// /// 学校名称 /// public string SchoolName { get; set; } /// /// 云校id /// public long CloudSchoolId { get; set; } /// /// 云校名称 /// public string CloudSchoolName { get; set; } } }