20 lines
629 B
C#
20 lines
629 B
C#
using SqlSugar;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Dolphin.ExamPictureCut.Domains.Biz;
|
|
|
|
[Table(nameof(MarkingSettingSubjective))]
|
|
public class MarkingSettingSubjective
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long Id { get; set; }
|
|
public long ExamSubjectId { get; set; }
|
|
public string QuestionNum { get; set; }
|
|
public float Score { get; set; }
|
|
public int SubQuestionCount { get; set; }
|
|
public string SubQuestionDetail { get; set; }
|
|
public string BigQuestionNum { get; set; }
|
|
public bool IsExcess { get; set; }
|
|
public string DotPenOriginalImg { get; set; }
|
|
}
|