From bc19ead2f5056c18d98d9edfcfec19973a3035ce Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Thu, 13 Mar 2025 14:36:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0optuserType?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs | 4 +++- IRaCIS.Core.Application/Service/Doctor/DoctorListService.cs | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs b/IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs index 0dd0ac176..a2850c379 100644 --- a/IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs +++ b/IRaCIS.Core.Application/Service/Doctor/DTO/DoctorModel.cs @@ -232,6 +232,8 @@ namespace IRaCIS.Application.Contracts { public int DoctorTrialState { get; set; } public string OptUserName { get; set; } = string.Empty; + + public int? OptUserType { get; set; } public DateTime? OptTime { get; set; } public string? OptTimeStr => OptTime?.ToString("yyyy-MM-dd HH:mm:ss"); @@ -265,7 +267,7 @@ namespace IRaCIS.Application.Contracts public string OptUserName { get; set; } = String.Empty; public DateTime? OptTime { get; set; } - + public int OptUserType { get; set; } } diff --git a/IRaCIS.Core.Application/Service/Doctor/DoctorListService.cs b/IRaCIS.Core.Application/Service/Doctor/DoctorListService.cs index eab2c7cec..c64db3edf 100644 --- a/IRaCIS.Core.Application/Service/Doctor/DoctorListService.cs +++ b/IRaCIS.Core.Application/Service/Doctor/DoctorListService.cs @@ -261,6 +261,7 @@ namespace IRaCIS.Core.Application.Service { u.DoctorTrialState = opt.IntoGroupState; u.OptTime = opt.OptTime; + u.OptUserType=opt.OptUserType; u.OptUserName = opt.OptUserName; } });