namespace IRaCIS.Core.Domain.Models; [Comment("医生 - 教育信息")] [Table("Education")] public class Education : BaseFullAuditEntity { #region 导航属性 #endregion public DateTime? BeginDate { get; set; } [StringLength(400)] public string City { get; set; } = null!; [StringLength(400)] public string CityCN { get; set; } = null!; [StringLength(400)] public string Country { get; set; } = null!; [StringLength(400)] public string CountryCN { get; set; } = null!; [StringLength(400)] public string Degree { get; set; } = null!; [StringLength(400)] public string DegreeCN { get; set; } = null!; public Guid DoctorId { get; set; } public DateTime? EndDate { get; set; } [StringLength(400)] public string Major { get; set; } = null!; [StringLength(400)] public string MajorCN { get; set; } = null!; [StringLength(400)] public string Organization { get; set; } = null!; [StringLength(400)] public string OrganizationCN { get; set; } = null!; [StringLength(400)] public string Province { get; set; } = null!; [StringLength(400)] public string ProvinceCN { get; set; } = null!; public int ShowOrder { get; set; } }