From 829ad7b2edd598f4191dcf5ef737011189596bcb Mon Sep 17 00:00:00 2001
From: wxd <123@qq.com>
Date: Mon, 20 Apr 2026 09:32:06 +0800
Subject: [PATCH] =?UTF-8?q?=E5=85=AC=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../CreateBookingMedicalByExcelInputDto.cs | 13 ++++++++++++-
.../ThirdBookings/ThirdBookingAppService.cs | 4 +++-
2 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/src/Shentun.Peis.Application.Contracts/ThirdBookings/CreateBookingMedicalByExcelInputDto.cs b/src/Shentun.Peis.Application.Contracts/ThirdBookings/CreateBookingMedicalByExcelInputDto.cs
index 4d36d1c6..66a48fbf 100644
--- a/src/Shentun.Peis.Application.Contracts/ThirdBookings/CreateBookingMedicalByExcelInputDto.cs
+++ b/src/Shentun.Peis.Application.Contracts/ThirdBookings/CreateBookingMedicalByExcelInputDto.cs
@@ -74,6 +74,17 @@ namespace Shentun.Peis.ThirdBookings
///
public string MaritalStatus { get; set; }
-
+ ///
+ /// 岗位名称
+ ///
+ public string Position2 { get; set; }
+
+
+ ///
+ /// 分公司名称
+ ///
+ public string BranchCompany { get; set; }
+
+
}
}
diff --git a/src/Shentun.Peis.Application/ThirdBookings/ThirdBookingAppService.cs b/src/Shentun.Peis.Application/ThirdBookings/ThirdBookingAppService.cs
index 890281dd..b7d98615 100644
--- a/src/Shentun.Peis.Application/ThirdBookings/ThirdBookingAppService.cs
+++ b/src/Shentun.Peis.Application/ThirdBookings/ThirdBookingAppService.cs
@@ -191,7 +191,9 @@ namespace Shentun.Peis.ThirdBookings
SourceChannel = "1",
BookingType = "4",
ConfirmType = "2",
- ThirdMedicalCenterId = input.ThirdMedicalCenterId
+ ThirdMedicalCenterId = input.ThirdMedicalCenterId,
+ Position2 = input.Position2,
+ BranchCompany = input.BranchCompany
};
await _thirdBookingRepository.InsertAsync(thirdBookingEnt);