工资单定时发送fix

This commit is contained in:
Harryxzy 2023-07-04 14:35:51 +08:00
parent 8dc3883168
commit a5a05aabda
1 changed files with 3 additions and 0 deletions

View File

@ -1560,6 +1560,9 @@ public class SalarySendServiceImpl extends Service implements SalarySendService
@Override
public List<SalarySendInfoPO> getNeedSendInfoId(List<Long> salarySobIds) {
if(CollectionUtils.isEmpty(salarySobIds)){
return Collections.emptyList();
}
return getSalarySendInfoMapper().getNeedSendInfoId(salarySobIds);
}
}