Browse Source

预约

master
wxd 5 months ago
parent
commit
6257853f98
  1. 5
      src/Shentun.Peis.Application.Contracts/ThirdBookings/GetThirdBookingListDto.cs
  2. 3
      src/Shentun.Peis.Application/ThirdBookings/ThirdBookingAppService.cs

5
src/Shentun.Peis.Application.Contracts/ThirdBookings/GetThirdBookingListDto.cs

@ -97,5 +97,10 @@ namespace Shentun.Peis.ThirdBookings
/// 单位分组名称
/// </summary>
public string CustomerOrgGroupName { get; set; }
/// <summary>
/// 岗位
/// </summary>
public string PositionName { get; set; }
}
}

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

Loading…
Cancel
Save