CompetitionAPI_dotnet/Competition.Mysql/Other/user_fault_record.cs

54 lines
1.0 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.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Competition.Mysql.Other
{
public class user_fault_record
{
/// <summary>
/// 是否正确 1正确0不正确
/// </summary>
public string IsCorrect { get; set; }
/// <summary>
/// 故障记录内容
/// </summary>
public string Content { get; set; }
/// <summary>
/// 选择题选中的答案,多个以|分隔
/// </summary>
public string Answer { get; set; }
public string Cache_Key{ get; set; }
/// <summary>
///
/// </summary>
public string Cache_Content { get; set; }
/// <summary>
///
/// </summary>
public string Cache_Value { get; set; }
/// <summary>
///
/// </summary>
public string R1 { get; set; }
/// <summary>
///
/// </summary>
public string R2 { get; set; }
/// <summary>
///
/// </summary>
public string R3 { get; set; }
}
}