74 lines
2.1 KiB
C#
74 lines
2.1 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace LearningOfficer.OA.Common.Dtos.OA.WorkProcess
|
||
{
|
||
public class FollowInfoResult
|
||
{
|
||
|
||
/// <summary>
|
||
/// 任务信息
|
||
/// </summary>
|
||
public BaseTaskClassResult taskInfo { get; set; }
|
||
/// <summary>
|
||
/// 落地老师问题
|
||
/// </summary>
|
||
public List<FollowTeachersituationResult> FollowTeachersituations { get; set; }
|
||
/// <summary>
|
||
/// 跟课缺席用户列表
|
||
/// </summary>
|
||
public List<FollowAbsenceUserResult> followAbsenceUserResults { get; set; }
|
||
/// <summary>
|
||
/// 重点学生列表
|
||
/// </summary>
|
||
public List<FollowKeynoteUserResult> followKeynoteUserResults { get; set; }
|
||
/// <summary>
|
||
/// 跟课ID
|
||
/// </summary>
|
||
public long FollowId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备 注:课程id
|
||
/// 默认值:
|
||
///</summary>
|
||
public long ClassCourseId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:跟课方式1:直播;2:录播;
|
||
/// 默认值:
|
||
///</summary>
|
||
public int? ClassesFollowMethod { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 备 注:信号是否稳定;0否;1:是;
|
||
/// 默认值:
|
||
///</summary>
|
||
public int? ClassesSignalStability { get; set; }
|
||
/// <summary>
|
||
/// 备 注:整体活跃度,参数id
|
||
/// 默认值:
|
||
///</summary>
|
||
public int? ConcentrationActivityEnum { get; set; }
|
||
/// <summary>
|
||
/// 备 注:整体专注度,参数id
|
||
/// 默认值:
|
||
///</summary>
|
||
public int? ConcentrationLevelEnum { get; set; }
|
||
/// <summary>
|
||
/// 备 注:整体问题回答正确率/知识掌握程度,参数id
|
||
/// 默认值:
|
||
///</summary>
|
||
public int? MasteryLevelEnum { get; set; }
|
||
/// <summary>
|
||
/// 其他
|
||
/// </summary>
|
||
public string Remark { get; set; }
|
||
|
||
}
|
||
}
|