feign报错;

This commit is contained in:
王奎兴
2026-06-12 16:13:06 +08:00
parent bf616b3ee6
commit 115f427ce7
@@ -10,6 +10,7 @@ import org.slf4j.LoggerFactory;
import org.springframework.cloud.openfeign.FallbackFactory;
import org.springframework.stereotype.Component;
import java.util.List;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
@@ -79,6 +80,11 @@ public class RemoteOmsFeignFallbackFactory implements FallbackFactory<OmsService
public AjaxResult updateGwLog(GwLogDTO gwLogDTO) {
return null;
}
@Override
public AjaxResult batchPush(List<Long> idList) {
return null;
}
};
}
}