using Volo.Abp; namespace Dolphin.ExamPictureCut.Domains.Biz; public class SubjectiveMarkingResult : ISoftDelete { public long Id { get; set; } public long ExamSubjectId { get; set; } public long ExamSubjectSchoolId { get; set; } public string StudentExamNum { get; set; } public string QuestionNum { get; set; } public float Score { get; set; } public float TotalScore { get; set; } public int SubQuestionCount { get; set; } public string SubQuestionDetail { get; set; } = "[]"; public string StudentAnswer { get; set; } public string GroupNo { get; set; } public bool IsAssign { get; set; } public bool IsRating { get; set; } public string CommentImgUrl { get; set; } = "[]"; public string BigQuestionNum { get; set; } public bool IsExcess { get; set; } public bool IsDeleted { get; set; } public DateTime CreateDate { get; set; } public DateTime UpdateDate { get; set; } }