namespace CompetitionAPI.api.back { /// /// 结束考试请求实体 /// public class EditExamRequest { /// /// 考试id /// public string ExamId { get; set; } /// /// 考试名称 /// public string ExamName { get; set; } /// /// 类型 实训、考试 /// public string Type { get; set; } /// /// 封面名称 /// public string CoverName { get; set; } /// /// 封面路径 /// public string CoverPath { get; set; } /// /// 简介 /// public string Synopsis { get; set; } /// /// 开始考试时间 /// public string StartExamTime { get; set; } /// /// 结束考试时间 /// public string EndExamTime { get; set; } /// /// 巡检日期 /// public string LinePatrolDate { get; set; } /// /// 处理日期 /// public string HandleDate { get; set; } /// /// 场景id /// public string SceneId { get; set; } /// /// 台区id /// public string PlatformAreaId { get; set; } /// /// 台区名称 /// public string PlatformArea { get; set; } /// /// 线路id /// public string LineId { get; set; } /// /// 考试时长 /// public string ExaminationDuration { get; set; } /// /// 进线电缆型号及长度 /// public string IncomingLineModelLength { get; set; } /// /// 出线电缆型号及长度 /// public string OutgoingLineModelLength { get; set; } /// /// 工单内容 /// public string WorkOrderContent { get; set; } /// /// 背景资料 /// public string BackgroundInformation { get; set; } /// /// 天气 /// public string Weather { get; set; } } }