using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Competition.Mysql.Other { public class exam_scene { /// /// 考试故障id /// public string FaultId { get; set; } /// /// 故障类型 /// public string FaultType { get; set; } /// /// 类型,三维需要的分类类型 /// public string Type { get; set; } /// /// 故障现象 /// public string FaultDesc { get; set; } /// /// 根缺陷设备id /// public string RootDeviceId { get; set; } /// /// 非断路器数据 /// public fault_details Details { get; set; } /// /// 断路器数据 /// public screen_data Screen { get; set; } } /// /// 非断路器数据实体 /// public class fault_details { /// /// 缺陷设备id /// public string DeviceId { get; set; } /// /// 缺陷等级 一般、紧急、重大 /// public string DefectLevel { get; set; } /// /// 是否具体模拟,现场处理、选择题 /// public string SpecificSimulation { get; set; } /// /// 缺陷详细信息 0:没有缺口,1:大缺口,2:小缺口,3:瓷瓶裂纹 /// public string DegreesSerialNumber { get; set; } /// /// 故障点位置度数 /// public string DegreesValue { get; set; } /// /// 故障状态,0:没有故障,1:单个故障,2:多个故障 /// public string ChoiceQuestion { get; set; } /// /// 多个故障值,多个以|分隔 /// public string MultipleQuestion { get; set; } /// /// 故障点位置 /// public string PositionValue { get; set; } /// /// 位置,左、中、右 /// public string Position { get; set; } /// /// 题干 /// public string Topic { get; set; } /// /// 选项A /// public string OptionA { get; set; } /// /// 选项B /// public string OptionB { get; set; } /// /// 选项C /// public string OptionC { get; set; } /// /// 选项D /// public string OptionD { get; set; } /// /// 选项E /// public string OptionE { get; set; } /// /// 正确答案,多个答案以|分隔 /// public string RightKey { get; set; } /// /// 熔芯正常值 /// public string FusibleCoreNormal { get; set; } /// /// 熔芯故障值 /// public string FusibleCoreFault { get; set; } /// /// 瓷瓶子类型 /// public string PorcelainBottleType { get; set; } /// /// 方向 东、西、南、北 /// public string Direction { get; set; } /// /// 台区一电缆图片 /// public string SensitiveKnowledge { get; set; } /// /// 台区二电缆图片 /// public string Minhui { get; set; } /// /// 台区三电缆图片 /// public string SensitiveLine { get; set; } /// /// 台区四电缆图片 /// public string Allergy { get; set; } /// /// 台区五电缆图片 /// public string GracefulGraceful { get; set; } /// /// 处理详情 如当前贴图类型 /// public string CurreSelectDetail { get; set; } /// /// 故障位置 /// public string FaultLocation { get; set; } } /// /// 断路器数据实体 /// public class screen_data { /// /// 缺陷设备id /// public string DeviceId { get; set; } /// /// 断路器设置名称 /// public string Settings { get; set; } /// /// 故障状态 0:没有故障,1:单个故障,2:多个故障 /// public string ChoiceQuestion { get; set; } /// /// 具体参数 /// public List Params { get; set; } } public class setting_data { public string Name { get; set; } public string Value { get; set; } } }