This commit is contained in:
he
2022-10-17 17:38:57 +08:00
parent d8dcc47006
commit 55b36519d1
6 changed files with 128 additions and 137 deletions
@@ -7,16 +7,16 @@ using Newtonsoft.Json;
namespace IRaCIS.Core.Domain.Models
{
///<summary>
///TrialConfigDictionary
///</summary>
[Table("TrialConfigDictionary")]
public class TrialConfigDictionary : Entity, IAuditAdd
{
///<summary>
///ReadingCriterionDictionary
///</summary>
[Table("ReadingCriterionDictionary")]
public class ReadingCriterionDictionary : Entity, IAuditAdd
{
/// <summary>
/// TrialId
/// </summary>
public Guid TrialId { get; set; }
/// CriterionId
/// </summary>
public Guid CriterionId { get; set; }
/// <summary>
/// DictionaryId
@@ -27,10 +27,20 @@ namespace IRaCIS.Core.Domain.Models
/// CreateTime
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// CreateUserId
/// </summary>
/// IsSystemCriterion
/// </summary>
public bool IsSystemCriterion { get; set; } = false;
/// <summary>
/// ParentCode
/// </summary>
public string ParentCode { get; set; } = string.Empty;
/// <summary>
/// CreateUserId
/// </summary>
public Guid CreateUserId { get; set; }
[JsonIgnore]