Commit 3a0a7bc5 by 李承祥

绩效人员排序

parent 004065f6
......@@ -48,7 +48,7 @@ public im_employee GetEmployee(EmployeeRequest request)
public List<im_employee> GetEmployeeList(int allotId)
{
var employee = perforImemployeeRepository.GetEntities(t => t.AllotID == allotId);
return employee;
return employee?.OrderBy(t => t.AccountType).ThenBy(t => t.AccountingUnit).ThenBy(t => t.DoctorName).ToList();
}
/// <summary>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment