65 lines
1.6 KiB
C#
65 lines
1.6 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[Table("Education")]
|
|
public partial class Education : BaseFullAuditEntity
|
|
{
|
|
#region µ¼º½ÊôÐÔ
|
|
|
|
#endregion
|
|
public Guid DoctorId { get; set; }
|
|
|
|
[Column(TypeName = "date")]
|
|
public DateTime? BeginDate { get; set; }
|
|
[Column(TypeName = "date")]
|
|
public DateTime? EndDate { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Degree { get; set; } = string.Empty;
|
|
[StringLength(100)]
|
|
public string Major { get; set; } = string.Empty;
|
|
|
|
[StringLength(100)]
|
|
public string Organization { get; set; } = string.Empty;
|
|
|
|
|
|
[StringLength(50)]
|
|
public string Country { get; set; } = string.Empty;
|
|
|
|
|
|
[StringLength(50)]
|
|
public string Province { get; set; } = string.Empty;
|
|
|
|
|
|
[StringLength(50)]
|
|
public string City { get; set; } = string.Empty;
|
|
|
|
|
|
[StringLength(50)]
|
|
public string DegreeCN { get; set; } = string.Empty;
|
|
[StringLength(100)]
|
|
public string MajorCN { get; set; } = string.Empty;
|
|
|
|
[StringLength(100)]
|
|
public string OrganizationCN { get; set; } = string.Empty;
|
|
|
|
|
|
[StringLength(50)]
|
|
public string CountryCN { get; set; } = string.Empty;
|
|
|
|
|
|
[StringLength(50)]
|
|
public string ProvinceCN { get; set; } = string.Empty;
|
|
|
|
|
|
[StringLength(50)]
|
|
public string CityCN { get; set; } = string.Empty;
|
|
|
|
public int ShowOrder { get; set; }
|
|
|
|
}
|
|
}
|