CompetitionAPI_dotnet/CompetitionAPI/api/unity/GetFaultListResponse.cs

81 lines
1.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace CompetitionAPI.api.unity
{
public class GetFaultListResponse
{
/// <summary>
/// 故障id
/// </summary>
public int ThreeFaultId { get; set; }
/// <summary>
/// 设备id
/// </summary>
public int ThreeDeviceId { get; set; }
/// <summary>
/// 查找分值
/// </summary>
public decimal SelectScore { get; set; }
/// <summary>
/// 分类分值
/// </summary>
public decimal FaultScore { get; set; }
/// <summary>
/// 处理分值
/// </summary>
public decimal HandlerScore { get; set; }
/// <summary>
/// 题干
/// </summary>
public string Topic { get; set; }
/// <summary>
/// 选项A
/// </summary>
public string OptionA { get; set; }
/// <summary>
/// 选项B
/// </summary>
public string OptionB { get; set; }
/// <summary>
/// 选项C
/// </summary>
public string OptionC { get; set; }
/// <summary>
/// 选项D
/// </summary>
public string OptionD { get; set; }
/// <summary>
/// 选项E
/// </summary>
public string OptionE { get; set; }
/// <summary>
/// 正常答案
/// </summary>
public string RightKey { get; set; }
/// <summary>
/// 故障状态 0正常非0代表故障
/// </summary>
public string ChoiceQuestion { get; set; }
/// <summary>
/// 多个故障值
/// </summary>
public string MultipleQuestion { get; set; }
/// <summary>
/// 其它特殊字段值
/// </summary>
public string Settings { get; set; }
}
}