Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/OA/WorkProcess/FollowKeyNoteUserRequest.cs

60 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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