Commit 1278a491 by jianan

Merge branch 'refs/heads/local' into test

parents fec81fa4 cabd167a
......@@ -3,6 +3,7 @@ package com.yd.user.feign.fallback.mdcountry;
import com.yd.common.result.Result;
import com.yd.user.feign.client.mdcountry.ApiMdCountryFeignClient;
import com.yd.user.feign.response.mdcountry.ApiMdCountryGroupResponse;
import com.yd.user.feign.response.mdcountry.ApiMdCountrySearchResponse;
import lombok.extern.slf4j.Slf4j;
import org.springframework.cloud.openfeign.FallbackFactory;
import org.springframework.stereotype.Component;
......@@ -18,6 +19,11 @@ public class ApiMdCountryFeignFallbackFactory implements FallbackFactory<ApiMdCo
return null;
}
@Override
public Result<ApiMdCountrySearchResponse> search(String name) {
return null;
}
};
}
}
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