108 lines
2.6 KiB
C#
108 lines
2.6 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由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;
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///OrganTrialInfo
|
|
///</summary>
|
|
[Table("OrganTrialInfo")]
|
|
public class OrganTrialInfo : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
[JsonIgnore]
|
|
[ForeignKey("OrganInfoId")]
|
|
public OrganInfo OrganInfo { get; set; }
|
|
#endregion
|
|
/// <summary>
|
|
/// 器官Id
|
|
/// </summary>
|
|
public Guid OrganInfoId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 项目Id
|
|
/// </summary>
|
|
public Guid TrialId { get; set; }
|
|
|
|
public bool IsEnable { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 标准Id
|
|
/// </summary>
|
|
public Guid TrialCriterionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 部位
|
|
/// </summary>
|
|
public string Part { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 部位 英文
|
|
/// </summary>
|
|
public string PartEN { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// TULOC 器官
|
|
/// </summary>
|
|
public string TULOC { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// TULOC 器官 英文
|
|
/// </summary>
|
|
public string TULOCEN { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 位置
|
|
/// </summary>
|
|
public string TULAT { get; set; } = string.Empty;
|
|
|
|
|
|
/// <summary>
|
|
/// 位置 英文
|
|
/// </summary>
|
|
public string TULATEN { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 是否是淋巴结
|
|
/// </summary>
|
|
public IsLymph IsLymphNodes { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否可编辑位置
|
|
/// </summary>
|
|
public bool IsCanEditPosition { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分类
|
|
/// </summary>
|
|
public string Classification { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 分类 英文
|
|
/// </summary>
|
|
public string ClassificationEN { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
public int ShowOrder { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 器官类型
|
|
/// </summary>
|
|
public OrganType? OrganType { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|