using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Competition.Mysql.Other
{
///
/// 考试、台区信息
///
public class exam_platform_area
{
///
/// 考试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; }
///
/// 实训简介
///
public string Synopsis { get; set; }
///
/// 封面路径
///
public string CoverPath { get; set; }
///
/// 封面名称
///
public string CoverName { get; set; }
///
/// 场景id
///
public string SceneId { get; set; }
///
/// 台区id
///
public string PlatformAreaId { get; set; }
///
/// 台区名称
///
public string PlatformAreaName { 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 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 Type { get; set; }
///
/// 状态 未发布、已发布、已结束
///
public string Status { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 发布时间
///
public DateTime? ReleaseTime { get; set; }
///
/// 天气
///
public string Weather { get; set; }
}
}