CompetitionAPI_dotnet/CompetitionAPI/api/unity/GetExamResponse.cs

129 lines
3.4 KiB
C#

namespace CompetitionAPI.api.unity
{
/// <summary>
/// 获取当前时间已发布的考试信息接口响应实体
/// </summary>
public class GetExamResponse
{
/// <summary>
/// 考试id
/// </summary>
public string ExamId { get; set; }
/// <summary>
/// 考试名称
/// </summary>
public string ExamName { get; set; }
/// <summary>
/// 考试开始时间
/// </summary>
public DateTime StartExamTime { get; set; }
/// <summary>
/// 考试结束时间
/// </summary>
public DateTime EndExamTime { get; set; }
/// <summary>
/// 考试时长
/// </summary>
public string ExaminationDuration { get; set; }
/// <summary>
/// 场景设备状态
/// </summary>
public string RestoreSceneMsg { get; set; }
/// <summary>
/// 场景
/// </summary>
public string Scene { get; set; }
/// <summary>
/// 台区
/// </summary>
public string PlatformArea { get; set; }
/// <summary>
/// 线路
/// </summary>
public string Line { get; set; }
/// <summary>
/// 巡线日期
/// </summary>
public DateTime LinePatrolDate { get; set; }
/// <summary>
/// 处理日期
/// </summary>
public DateTime HandleDate { get; set; }
/// <summary>
/// 工单内容
/// </summary>
public string WorkOrderContent { get; set; }
/// <summary>
/// 背景资料
/// </summary>
public string BackgroundInformation { get; set; }
/// <summary>
/// 考试状态:未开始、考试中、已结束
/// </summary>
public string Status { get; set; }
/// <summary>
/// 考试环节
/// </summary>
public string ExaminationLink { get; set; }
/// <summary>
/// 选择的台区
/// </summary>
public string SelectPlatformArea { get; set; }
/// <summary>
/// 场景
/// </summary>
public List<Competition.Mysql.Other.exam_scene> SceneData { get; set; }
/// <summary>
/// 巡线工器具
/// </summary>
public List<Competition.Mysql.Other.exam_tool> LinePatrolTool { get; set; }
/// <summary>
/// 排故工器具
/// </summary>
public List<Competition.Mysql.Other.exam_tool> TroubleshootingTool { get; set; }
/// <summary>
/// 停电操作票
/// </summary>
public List<Competition.Mysql.Other.exam_operation_ticket> PowerFailure { get; set; }
/// <summary>
/// 送电操作票
/// </summary>
public List<Competition.Mysql.Other.exam_operation_ticket> PowerTransmission { get; set; }
/// <summary>
/// 选择的停电操作票
/// </summary>
public List<Competition.Mysql.Other.user_operation_ticket> SelectPowerFailure { get; set; }
/// <summary>
/// 选择的送电操作票
/// </summary>
public List<Competition.Mysql.Other.user_operation_ticket> SelectPowerTransmission { get; set; }
/// <summary>
/// 故障记录以及选择题结果
/// </summary>
public List<Competition.Mysql.Other.user_fault_record> FaultRecord { get; set; }
}
}