irc-netcore-api/IRaCIS.Core.Domain/Dcotor/Education.cs

55 lines
1004 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; }
}