Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Curriculum/CurriculumSubTeacherRequest.cs

94 lines
2.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Curriculum
{
/// <summary>
/// 课程模板科目教师信息。
/// </summary>
public class CurriculumSubTeacherRequest
{
/// <summary>
/// 备 注:班级id
/// 默认值:
///</summary>
public long ClassId { get; set; }
/// <summary>
/// 备 注:科目id
/// 默认值:
///</summary>
public long SubId { get; set; }
/// <summary>
/// 备 注:科目名称
/// 默认值:
///</summary>
public string SubName { get; set; } = null!;
/// <summary>
/// 备 注:教师id
/// 默认值:
///</summary>
public long TeacherId { get; set; }
/// <summary>
/// 备 注:教师名称
/// 默认值:
///</summary>
public string TeacherName { get; set; } = null!;
}
/// <summary>
/// 修改课程模板科目教师信息。
/// </summary>
public class UpdateCurriculumSubTeacherRequest
{
/// <summary>
/// 备 注:修改传id新增不传
/// </summary>
public long? Id { get; set; }
/// <summary>
/// 备 注:班级id
/// 默认值:
///</summary>
public long ClassId { get; set; }
/// <summary>
/// 备 注:科目id
/// 默认值:
///</summary>
public long SubId { get; set; }
/// <summary>
/// 备 注:科目名称
/// 默认值:
///</summary>
public string SubName { get; set; } = null!;
/// <summary>
/// 备 注:教师id
/// 默认值:
///</summary>
public long TeacherId { get; set; }
/// <summary>
/// 备 注:教师名称
/// 默认值:
///</summary>
public string TeacherName { get; set; } = null!;
}
}