45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2023-06-26 11:03:26
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
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("ClinicalTableAnswer")]
|
|
public partial class ClinicalTableAnswer : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
[ForeignKey("RowId")]
|
|
public ClinicalAnswerRowInfo ClinicalAnswerRowInfo { get; set; }
|
|
#endregion
|
|
|
|
[Comment(" 答案")]
|
|
[StringLength(4000)]
|
|
public string Answer { get; set; } = null!;
|
|
|
|
[Comment(" 表单Id")]
|
|
public Guid ClinicalFormId { get; set; }
|
|
|
|
[Comment(" 问题Id")]
|
|
public Guid QuestionId { get; set; }
|
|
|
|
[Comment(" 答案行的Id")]
|
|
public Guid RowId { get; set; }
|
|
|
|
[Comment(" 受试者Id")]
|
|
public Guid SubjectId { get; set; }
|
|
|
|
public Guid TableQuestionId { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|