47 lines
1011 B
C#
47 lines
1011 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.Curriculum
|
|
{
|
|
/// <summary>
|
|
/// 课程科目教师结果模型。
|
|
/// </summary>
|
|
public class CurriculumSubTeacherResult
|
|
{
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 备 注:班级id
|
|
/// 默认值:
|
|
///</summary>
|
|
public int 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!;
|
|
}
|
|
|
|
}
|