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