36 lines
574 B
C#
36 lines
574 B
C#
|
|
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///TrialBodyPart
|
|
///</summary>
|
|
[Table("TrialBodyPart")]
|
|
public class TrialBodyPart : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
[JsonIgnore]
|
|
public Trial Trial { get; set; }
|
|
|
|
#endregion
|
|
|
|
public string Code { get; set; } = string.Empty;
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
public string NameCN { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
public Guid TrialId { get; set; }
|
|
|
|
|
|
public bool IsHandAdd { get; set; }
|
|
|
|
}
|
|
}
|