using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Competition.Mysql.Other
{
public class exam_the
{
///
/// 考试id
///
public string ExamId { get; set; }
///
/// 考试名称
///
public string ExamName { get; set; }
///
/// 开始考试时间
///
public DateTime? StartExamTime { get; set; }
///
/// 结束考试时间
///
public DateTime? EndExamTime { get; set; }
///
/// 考试时长
///
public string ExaminationDuration { get; set; }
///
/// 场景id
///
public string SceneId { get; set; }
///
/// 台区id
///
public string PlatformAreaId { get; set; }
///
/// 线路id
///
public string LineId { get; set; }
///
/// 巡线日期
///
public DateTime? LinePatrolDate { get; set; }
///
/// 处理日期
///
public DateTime? HandleDate { get; set; }
///
/// 工单内容
///
public string WorkOrderContent { get; set; }
///
/// 背景资料
///
public string BackgroundInformation { get; set; }
///
/// 进线电缆型号及长度
///
public string IncomingLineModelLength { get; set; }
///
/// 出线电缆型号及长度
///
public string OutgoingLineModelLength { get; set; }
///
/// 状态 未发布、已发布、已结束
///
public string Status { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 发布时间
///
public DateTime? ReleaseTime { get; set; }
///
/// 漏电保护设置不合理正确值
///
public string LeakageProtection { get; set; }
///
/// 过载保护设置错误正确值
///
public string OverloadProtection { get; set; }
///
/// 短路延时保护设置错误正确值
///
public string ShortCircuitDelayProtection { get; set; }
///
/// 短路瞬时保护设置错误正确值
///
public string ShortCircuitProtection { get; set; }
///
/// 欠压保护设置错误正确值
///
public string UndervoltageProtection { get; set; }
///
/// 过压保护设置错误正确值
///
public string OvervoltageProtection { get; set; }
///
/// 缺相保护设置错误正确值
///
public string PhaseLossProtection { get; set; }
///
/// 熔芯熔断电流正确值
///
public string FusibleCoreCurrent { get; set; }
///
/// 是否考试
///
public string IsExam { get; set; }
///
/// 天气
///
public string Weather { get; set; }
}
}