39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using SqlSugar;
|
|
|
|
namespace Dolphin.ExamPictureCut.Domains.Biz;
|
|
|
|
[SugarTable("MK_ExamResult")]
|
|
public class MkExamResult
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true, ColumnName = "ID_bigint")]
|
|
public long Id { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "StudentNo_nvarchar")]
|
|
public string StudentNo { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "ExamId_bigint")]
|
|
public long ExamId { get; set; }
|
|
|
|
public long ExamSubjectId { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "QuestionNumber_int")]
|
|
public string QuestionNumber { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "SmallQuestion_int")]
|
|
public int SmallQuestion { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "IsObjectiveQuestions_bit")]
|
|
public bool IsObjectiveQuestion { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "QuestionValue_nvarchar")]
|
|
public string QuestionValue { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "QuestionNumberSlaveIndex_int")]
|
|
public int QuestionNumberSlaveIndex { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "GroupNo_nvarchar")]
|
|
public string GroupNo { get; set; }
|
|
|
|
public bool IsSync { get; set; }
|
|
}
|