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 { /// /// 任务信息 /// public BaseTaskClassResult taskInfo { get; set; } /// /// 落地老师问题 /// public List FollowTeachersituations { get; set; } /// /// 跟课缺席用户列表 /// public List followAbsenceUserResults { get; set; } /// /// 重点学生列表 /// public List followKeynoteUserResults { get; set; } /// /// 跟课ID /// public long FollowId { get; set; } /// /// 备 注:课程id /// 默认值: /// public long ClassCourseId { get; set; } /// /// 备 注:跟课方式1:直播;2:录播; /// 默认值: /// public int? ClassesFollowMethod { get; set; } /// /// 备 注:信号是否稳定;0否;1:是; /// 默认值: /// public int? ClassesSignalStability { get; set; } /// /// 备 注:整体活跃度,参数id /// 默认值: /// public int? ConcentrationActivityEnum { get; set; } /// /// 备 注:整体专注度,参数id /// 默认值: /// public int? ConcentrationLevelEnum { get; set; } /// /// 备 注:整体问题回答正确率/知识掌握程度,参数id /// 默认值: /// public int? MasteryLevelEnum { get; set; } /// /// 其他 /// public string Remark { get; set; } } }