修改bug

This commit is contained in:
haozq 2025-08-18 17:18:51 +08:00
parent b1c52d5722
commit de01edf8dd
1 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package com.bonus.system.api.factory;
import com.bonus.common.core.domain.R;
import com.bonus.system.api.RemoteUrkUtilsService;
import com.bonus.system.api.domain.SystemParamsVo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.cloud.openfeign.FallbackFactory;
@ -44,6 +45,11 @@ public class RemoteUrkUtilsFallbackFactory implements FallbackFactory<RemoteUrkU
R.fail("人员出场:" + throwable.getMessage());
}
@Override
public void delUserByDeviceList(SystemParamsVo paramsVo, String source) {
R.fail("人员批量出场报错:" + throwable.getMessage());
}
};
}