using LearningOfficer.OA.Common.Dtos.School;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.CloudSchool
{
public class CloudSchoolAddDto
{
///
/// 备 注:云校名称
/// 默认值:
///
public string Name { get; set; } = null!;
///
/// 备 注:启用状态
/// 默认值:
///
public bool Enable { get; set; }
/////
///// 学校集合
/////
//public List SchoolIds { get; set; }
}
public class CloudSchoolUpdateDto : CloudSchoolAddDto
{
public long Id { get; set; }
}
public class CloudSchoolViewDto
{
public long Id { get; set; }
///
/// 备 注:云校名称
/// 默认值:
///
public string Name { get; set; } = null!;
///
/// 备 注:启用状态
/// 默认值:
///
public bool Enable { get; set; }
///
/// 关联学习官部长名称
///
public string MinisterName { get; set; }
public List Schools { get; set; }
}
}