37 lines
941 B
C#
37 lines
941 B
C#
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<UserBooksResult>? Users { get; set; }
|
|
public List<SchoolTree>? Children { get; set; }
|
|
}
|
|
public class SchoolInfo
|
|
{
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 学校名称
|
|
/// </summary>
|
|
public string SchoolName { get; set; }
|
|
/// <summary>
|
|
/// 云校id
|
|
/// </summary>
|
|
public long CloudSchoolId { get; set; }
|
|
/// <summary>
|
|
/// 云校名称
|
|
/// </summary>
|
|
public string CloudSchoolName { get; set; }
|
|
|
|
}
|
|
|
|
}
|