32 lines
766 B
C#
32 lines
766 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.ClassTeacher
|
|
{
|
|
/// <summary>
|
|
/// 工作台-班级教师
|
|
/// </summary>
|
|
public class ClassTeacherResult
|
|
{
|
|
/// <summary>
|
|
/// 教师id
|
|
/// </summary>
|
|
public long TeacherId { get; set; }
|
|
/// <summary>
|
|
/// 教师名称
|
|
/// </summary>
|
|
public string TeacherName { get; set; } = null!;
|
|
/// <summary>
|
|
/// 科目Id
|
|
/// </summary>
|
|
public long SubId { get; set; } = 0;
|
|
/// <summary>
|
|
/// 科目名称
|
|
/// </summary>
|
|
public string SubName { get; set; } = null!;
|
|
}
|
|
}
|