43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2021-11-11 17:01:49
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
using IRaCIS.Core.Domain.Share;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("项目 - 质控问题表单答案")]
|
|
[Table("TrialQCQuestionAnswer")]
|
|
public class TrialQCQuestionAnswer : BaseFullAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
public TrialQCQuestion TrialQCQuestionConfigure { get; set; }
|
|
#endregion
|
|
|
|
|
|
public Guid TrialId { get; set; }
|
|
|
|
public string Answer { get; set; } = string.Empty;
|
|
|
|
public TrialQCProcess QCProcessEnum { get; set; }
|
|
|
|
[Comment("1代表第一个人QC数据 2 代表第二个人QC数据")]
|
|
public CurrentQC CurrentQCEnum { get; set; }
|
|
|
|
public Guid SubjectVisitId { get; set; }
|
|
|
|
|
|
public Guid TrialQCQuestionConfigureId { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|