51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2023-03-17 11:50:31
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Microsoft.EntityFrameworkCore;
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("受试者 - 附加评估标准结果")]
|
|
[Table("SubjectAdditionalEvaluationResult")]
|
|
public class SubjectAdditionalEvaluationResult : BaseFullAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
[ForeignKey("TrialReadingQuestionId")]
|
|
public ReadingQuestionTrial TrialReadingQuestion { get; set; }
|
|
|
|
#endregion
|
|
|
|
|
|
[Comment(" 附加评估答案")]
|
|
public string Answer { get; set; } = null!;
|
|
|
|
[Comment(" 最终结果")]
|
|
public string FinalAnswer { get; set; } = null!;
|
|
|
|
[Comment(" 最终结果翻字典")]
|
|
public string FinalTranslateDictionaryCode { get; set; } = null!;
|
|
|
|
[Comment(" 是否是最终结果")]
|
|
public bool IsFinalResult { get; set; }
|
|
|
|
public Guid SubjectId { get; set; }
|
|
|
|
[Comment(" 附加评估答案翻译字典")]
|
|
public string TranslateDictionaryCode { get; set; } = null!;
|
|
|
|
public Guid TrialReadingCriterionId { get; set; }
|
|
|
|
public Guid TrialReadingQuestionId { get; set; }
|
|
|
|
public Guid? VisitTaskId { get; set; }
|
|
|
|
}
|
|
|
|
|