zhongrj
2023-06-30 b1d7e4ca2e5f50ab40bb2b223861baf1e5231af7
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;
    }
}