Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/OA/WorkProcess/FollowTeachersituationReque...

71 lines
1.9 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 FollowQuestionRequest
{
/// <summary>
/// 备 注:跟课id
/// </summary>
public long FollowId { get; set; }
/// <summary>
/// 落地老师的问题列表
/// </summary>
public List<FollowTeachersituationRequest>? FollowTeachersituations { get; set; }
/// <summary>
/// 备 注:跟课方式1直播2录播 3:自讲;
/// 默认值:
///</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; }
}
public class FollowTeachersituationRequest
{
/// <summary>
/// 备 注:跟课id
/// 默认值:
/// </summary>
public long FollowId { get; set; }
/// <summary>
/// 备 注:落地老师-问题类型,字典表
/// 默认值:
/// </summary>
public long ParamId { get; set; }
}
}