From 3bdd5af113a8effb0784f6ebd3344da80b22420b Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Fri, 20 Sep 2024 10:55:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8C=BB=E7=94=9F=E5=AE=9E?= =?UTF-8?q?=E4=BD=93=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Domain/Dcotor/Doctor.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/IRaCIS.Core.Domain/Dcotor/Doctor.cs b/IRaCIS.Core.Domain/Dcotor/Doctor.cs index 961bebc07..f8903f8eb 100644 --- a/IRaCIS.Core.Domain/Dcotor/Doctor.cs +++ b/IRaCIS.Core.Domain/Dcotor/Doctor.cs @@ -71,7 +71,7 @@ public class Doctor : BaseFullAuditEntity public ContractorStatusEnum CooperateStatus { get; set; } = ContractorStatusEnum.Noncooperation; - public Guid DepartmentId { get; set; } + public Guid? DepartmentId { get; set; } [StringLength(400)] public string DepartmentOther { get; set; } = null!; @@ -89,7 +89,7 @@ public class Doctor : BaseFullAuditEntity public Guid GCPId { get; set; } - public Guid HospitalId { get; set; } + public Guid? HospitalId { get; set; } public string HospitalOther { get; set; } = null!; @@ -139,7 +139,7 @@ public class Doctor : BaseFullAuditEntity [StringLength(400)] public string PositionOtherCN { get; set; } = null!; - public Guid RankId { get; set; } + public Guid? RankId { get; set; } [StringLength(400)] public string RankOther { get; set; } = null!; @@ -165,7 +165,7 @@ public class Doctor : BaseFullAuditEntity public int Sex { get; set; } - public Guid SpecialityId { get; set; } + public Guid? SpecialityId { get; set; } [StringLength(400)] public string SpecialityOther { get; set; } = null!;