20 lines
452 B
C#
20 lines
452 B
C#
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[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; }
|
|
|
|
}
|