55 lines
1.2 KiB
C#
55 lines
1.2 KiB
C#
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("Ò½Éú - ½ÌÓýÐÅÏ¢")]
|
|
[Table("Education")]
|
|
public class Education : BaseFullAuditEntity
|
|
{
|
|
#region µ¼º½ÊôÐÔ
|
|
|
|
#endregion
|
|
public DateOnly? 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 DateOnly? 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; }
|
|
|
|
}
|