From 5ad7cd7cfa1310f4babd64eb402e5732ce7546e1 Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Mon, 20 Apr 2026 11:16:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=80=BB=E6=A3=80=E6=93=8D=E4=BD=9C=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PatientRegisters/PatientRegister.cs | 13 +++++++++++++ .../PatientRegisters/PatientRegisterDbMapping.cs | 4 +++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/src/Shentun.Peis.Domain/PatientRegisters/PatientRegister.cs b/src/Shentun.Peis.Domain/PatientRegisters/PatientRegister.cs index d3925fae..c1f19410 100644 --- a/src/Shentun.Peis.Domain/PatientRegisters/PatientRegister.cs +++ b/src/Shentun.Peis.Domain/PatientRegisters/PatientRegister.cs @@ -373,6 +373,19 @@ namespace Shentun.Peis.Models [Column("is_push_third_result")] public char IsPushThirdResult { get; set; } + + /// + /// 总检操作者 + /// + [Column("sum_check_operating_user")] + public Guid? SumCheckOperatingUser { get; set; } + + /// + /// 总检操作时间 + /// + [Column("sum_check_operating_time")] + public DateTime? SumCheckOperatingTime { get; set; } + [Column("concurrency_stamp")] public string ConcurrencyStamp { get; set; } diff --git a/src/Shentun.Peis.EntityFrameworkCore/DbMapping/PatientRegisters/PatientRegisterDbMapping.cs b/src/Shentun.Peis.EntityFrameworkCore/DbMapping/PatientRegisters/PatientRegisterDbMapping.cs index 97257668..ea581f21 100644 --- a/src/Shentun.Peis.EntityFrameworkCore/DbMapping/PatientRegisters/PatientRegisterDbMapping.cs +++ b/src/Shentun.Peis.EntityFrameworkCore/DbMapping/PatientRegisters/PatientRegisterDbMapping.cs @@ -107,7 +107,9 @@ namespace Shentun.Peis.DbMapping entity.Property(t => t.ReportReceiveName).HasComment("报告领取人"); entity.Property(t => t.ReportReceiveDate).HasComment("报告领取时间"); entity.Property(t => t.IsPushThirdResult).HasComment("是否推送第三方结果").HasDefaultValueSql("'N'"); - + entity.Property(t => t.SumCheckOperatingUser).HasComment("总检操作者"); + entity.Property(t => t.SumCheckOperatingTime).HasComment("总检操作时间"); + //entity.HasOne(d => d.CustomerOrgRegister) // .WithMany(p => p.PatientRegisters)