添加项目文件。

This commit is contained in:
DK
2022-03-28 15:27:40 +08:00
parent b620fcb0cf
commit dc78fd1a09
898 changed files with 173053 additions and 0 deletions
@@ -0,0 +1,22 @@
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
[Table("TrialDictionary")]
public partial class TrialDictionary : Entity
{
//public Guid Id { get; set; }
public virtual Trial Trial { get; set; }
public virtual Dictionary Dictionary { get; set; }
[StringLength(50)]
public string KeyName { get; set; } = string.Empty;
public Guid TrialId { get; set; }
public Guid DictionaryId { get; set; }
}
}