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