15 lines
479 B
C#
15 lines
479 B
C#
namespace Dolphin.ExamPictureCut.Domains.Biz;
|
|
|
|
public class MarkingSettingSubjective
|
|
{
|
|
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; }
|
|
}
|