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