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)