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 { /// /// 是否正确 1:正确,0:不正确 /// public string IsCorrect { get; set; } /// /// 故障记录内容 /// public string Content { get; set; } /// /// 选择题选中的答案,多个以|分隔 /// public string Answer { get; set; } public string Cache_Key{ get; set; } /// /// /// public string Cache_Content { get; set; } /// /// /// public string Cache_Value { get; set; } /// /// /// public string R1 { get; set; } /// /// /// public string R2 { get; set; } /// /// /// public string R3 { get; set; } } }