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