namespace CompetitionAPI.api.unity { public class GetFaultListResponse { /// /// 故障id /// public int ThreeFaultId { get; set; } /// /// 设备id /// public int ThreeDeviceId { get; set; } /// /// 查找分值 /// public decimal SelectScore { get; set; } /// /// 分类分值 /// public decimal FaultScore { get; set; } /// /// 处理分值 /// public decimal HandlerScore { 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; } /// /// 故障状态 0:正常,非0代表故障 /// public string ChoiceQuestion { get; set; } /// /// 多个故障值 /// public string MultipleQuestion { get; set; } /// /// 其它特殊字段值 /// public string Settings { get; set; } } }