Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/ClassTask/Teacher_behavior_questionRe...

48 lines
1.6 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.ClassTask
{
public class Teacher_behavior_questionRequest
{
/// <summary>
/// 观察记录id
/// </summary>
public long TBId { get; set; }
/// <summary>
/// 预习安排问题参数id多个用英文逗号分割
/// </summary>
public string? PreviewId { get; set; }
/// <summary>
/// 预习安排-预习方式问题参数id多个用英文逗号分割
/// </summary>
public string? PreviewTypeId { get; set; }
/// <summary>
/// 预习安排-检查方式: 1课前检查2课间检查3全面检查4未检查
/// </summary>
public int? Inspect_type_enum { get; set; }
/// <summary>
/// 预习安排-预习效果参数id
/// </summary>
public int? Preview_result_enum { get; set; }
/// <summary>
/// 备 注:课堂配合参数id多个用英文逗号分割
/// 默认值:
///</summary>
public string? Cooperation_id { get; set; }
/// <summary>
/// 备 注:课堂配合-巡视频率1好2中3低
/// 默认值:
///</summary>
public int? Cooperation_inspection_enum { get; set; }
/// <summary>
/// 备 注:课后观察参数id多个用英文逗号分割
/// 默认值:
///</summary>
public string? After_class_id { get; set; }
}
}