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 FollowKeynoteUserResult { /// /// 重点学生id /// public long Id { get; set; } /// /// 跟课id /// public long FollowId { get; set; } /// /// 重点学生id /// public long UserId { get; set; } /// /// 重点学生姓名 /// public string UserName { get; set; } /// /// 备 注:注意力与专注力,参数id,多个用英文逗号分割 /// 默认值: /// public string AttentionFocus { get; set; } = null!; /// /// 备 注:参与度与积极性,参数id,多个用英文逗号分割 /// 默认值: /// public string ParticipationEnthusiasm { get; set; } = null!; /// /// 备 注:行为规范与纪律,参数id,多个用英文逗号分割 /// 默认值: /// public string BehaviorNormsDiscipline { get; set; } = null!; /// /// 备 注:学习效果与理解困难,参数id,多个用英文逗号分割 /// 默认值: /// public string ComprehensionDifficulties { get; set; } = null!; /// /// 备 注:情绪与心理状态,参数id,多个用英文逗号分割 /// 默认值: /// public string PsychologicalState { get; set; } = null!; } }