35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
using SqlSugar;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Volo.Abp;
|
|
|
|
namespace Dolphin.ExamPictureCut.Domains.Biz;
|
|
|
|
[Table(nameof(SubjectiveMarkingResult))]
|
|
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 CommentImageUrl { get; set; } = "[]";
|
|
public string BigQuestionNum { get; set; }
|
|
public bool IsExcess { get; set; }
|
|
|
|
public bool IsDeleted { get; set; }
|
|
|
|
[SugarColumn(InsertServerTime = true)]
|
|
public DateTime CreateDate { get; set; }
|
|
|
|
[SugarColumn(InsertServerTime = true, UpdateServerTime = true)]
|
|
public DateTime UpdateDate { get; set; }
|
|
}
|