zhongrj
2023-07-31 307f0f4713a87dabb0031a7bb9a2d7a9e0726cfc
1
2
3
4
5
6
7
8
9
10
11
package cn.gistack.sm.collect.feign;
 
import org.springframework.stereotype.Component;
 
@Component
public class ICollectClientFallback implements ICollectClient{
    @Override
    public String getMyCollect(String userId) {
        return null;
    }
}