using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataService.Api
{
///
/// 上传故障排故数据接口请求实体
///
public class add_fault_operation_request
{
///
/// 故障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 defect_details Details { get; set; }
///
/// 断路器设置
///
public screen_details Screen { get; set; }
///
/// 考试id
///
public string ExamId { get; set; }
///
/// 用户id
///
public string UserId { get; set; }
}
public class defect_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_details
{
///
/// 缺陷设备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
{
public string Name { get; set; }
public string Value { get; set; }
}
}