94 lines
2.0 KiB
C#
94 lines
2.0 KiB
C#
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!;
|
||
}
|
||
}
|