//-------------------------------------------------------------------- // 此代码由T4模板自动生成 byzhouhang 20210918 // 生成时间 2022-08-12 14:29:17 // 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 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("OrganTrialInfo")] public class OrganTrialInfo : BaseAddAuditEntity { #region 导航属性 [JsonIgnore] [ForeignKey("OrganInfoId")] public OrganInfo OrganInfo { get; set; } #endregion [Comment("分类")] public string Classification { get; set; } = null!; public string ClassificationEN { get; set; } = null!; [Comment("是否可编辑位置")] public bool IsCanEditPosition { get; set; } public bool IsEnable { get; set; } public IsLymph IsLymphNodes { get; set; } [Comment(" 器官Id")] public Guid OrganInfoId { get; set; } public OrganType? OrganType { get; set; } public string Part { get; set; } = null!; public string PartEN { get; set; } = null!; public int ShowOrder { get; set; } public Guid TrialCriterionId { get; set; } [Comment(" 项目Id")] public Guid TrialId { get; set; } public string TULAT { get; set; } = null!; public string TULATEN { get; set; } = null!; public string TULOC { get; set; } = null!; public string TULOCEN { get; set; } = null!; }