zhongrj
2023-07-05 a7c5b11f4db54f95845b14c1105fa4b962fa9f3a
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;
    }
}