29 lines
713 B
C#
29 lines
713 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess.TaskFollow
|
|
{
|
|
public class ClassTeachersResult
|
|
{
|
|
/// <summary>
|
|
/// subId
|
|
/// </summary>
|
|
public int subject { get; set; }
|
|
/// <summary>
|
|
/// 科目名称
|
|
/// </summary>
|
|
public string subjectName { get; set; }
|
|
///// <summary>
|
|
///// 云端教师id
|
|
///// </summary>
|
|
//public long teacherId { get; set; }
|
|
/// <summary>
|
|
/// 落地老师id
|
|
/// </summary>
|
|
public long landingTeacherId { get; set; }
|
|
}
|
|
}
|