处理冲突

This commit is contained in:
钱涛 2025-01-21 17:19:17 +08:00
parent 50c3bbf41d
commit a0cd1f1973
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public enum DataTargetTypeEnum implements BaseEnum<Integer> {
@Override
public Set<Long> getEmpIds(String target, Object... param) {
SalaryEmployeeServiceImpl salaryEmployeeService = new SalaryEmployeeServiceImpl();
List<DataCollectionEmployee> employeeList = salaryEmployeeService.listBySalarySobId(Long.valueOf(target));
List<DataCollectionEmployee> employeeList = salaryEmployeeService.listBySalarySobId(Long.valueOf(target),true);
return SalaryEntityUtil.properties(employeeList, DataCollectionEmployee::getEmployeeId);
}
},