using IRaCIS.Core.Domain.Share;
namespace IRaCIS.Core.Domain.Models;
[Comment("医生 - 概述")]
[Table("DoctorSummarize")]
public class DoctorSummarize : BaseFullAuditEntity
{
///
/// 医生Id
///
public Guid DoctorId { get; set; }
///
/// 概述
///
[MaxLength]
public string Summarize { get; set; } = string.Empty;
///
/// 概述
///
[MaxLength]
public string SummarizeEn { get; set; } = string.Empty;
///
/// 是否是主模板
///
public bool IsMain { get; set; }
///
/// 适应症
///
public string Indication { get; set; }
///
/// 适应症
///
public string IndicationEn { get; set; }
///
/// 项目Id
///
public Guid? TrialId { get; set; }
}