From 6257853f985c9040099a71f30728f1aaded8844b Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Fri, 13 Jun 2025 12:55:45 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=84=E7=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ThirdBookings/GetThirdBookingListDto.cs | 5 +++++ .../ThirdBookings/ThirdBookingAppService.cs | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Shentun.Peis.Application.Contracts/ThirdBookings/GetThirdBookingListDto.cs b/src/Shentun.Peis.Application.Contracts/ThirdBookings/GetThirdBookingListDto.cs index 81489fc..20b00b4 100644 --- a/src/Shentun.Peis.Application.Contracts/ThirdBookings/GetThirdBookingListDto.cs +++ b/src/Shentun.Peis.Application.Contracts/ThirdBookings/GetThirdBookingListDto.cs @@ -97,5 +97,10 @@ namespace Shentun.Peis.ThirdBookings /// 单位分组名称 /// public string CustomerOrgGroupName { get; set; } + + /// + /// 岗位 + /// + public string PositionName { get; set; } } } diff --git a/src/Shentun.Peis.Application/ThirdBookings/ThirdBookingAppService.cs b/src/Shentun.Peis.Application/ThirdBookings/ThirdBookingAppService.cs index 4b37886..c81bcdd 100644 --- a/src/Shentun.Peis.Application/ThirdBookings/ThirdBookingAppService.cs +++ b/src/Shentun.Peis.Application/ThirdBookings/ThirdBookingAppService.cs @@ -113,7 +113,8 @@ namespace Shentun.Peis.ThirdBookings ChildCompanyName = s.ChildCompanyName, DepartmentName = s.DepartmentName, CustomerOrgId = GetCustomerOrgId(customerOrgList, customerOrgId, s.ChildCompanyName, s.DepartmentName), - CustomerOrgRegisterId = customerOrgRegisterId + CustomerOrgRegisterId = customerOrgRegisterId, + PositionName = s.PositionName }).ToList(); foreach (var item in entListDto)