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);