59 lines
1.5 KiB
C#
59 lines
1.5 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2022-06-29 14:04:36
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
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("ReadingMedicineTrialQuestion")]
|
|
public class ReadingMedicineTrialQuestion : BaseFullAuditEntity
|
|
{
|
|
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
[ForeignKey("ParentId")]
|
|
public ReadingMedicineTrialQuestion ParentQuestion { get; set; }
|
|
#endregion
|
|
|
|
public bool IsConfirm { get; set; }
|
|
|
|
public bool IsEnable { get; set; }
|
|
|
|
public bool IsRequired { get; set; }
|
|
|
|
public LanguageType LanguageType { get; set; }
|
|
|
|
public Guid? ParentId { get; set; }
|
|
|
|
public string ParentTriggerValue { get; set; } = null!;
|
|
|
|
[StringLength(510)]
|
|
public string QuestionName { get; set; } = null!;
|
|
|
|
public ReadingCategory ReadingCategory { get; set; }
|
|
|
|
public int ShowOrder { get; set; }
|
|
|
|
public Guid? SystemQuestionId { get; set; }
|
|
|
|
public Guid TrialId { get; set; }
|
|
|
|
public Guid TrialReadingCriterionId { get; set; }
|
|
|
|
public string Type { get; set; } = null!;
|
|
|
|
public string TypeValue { get; set; } = null!;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|