审查视图

src/main/java/cn/dnect/companyconsumer/service/hystrix/CompanyServiceHystrix.java 429 字节
二条 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package cn.dnect.companyconsumer.service.hystrix;

import cn.dnect.companyconsumer.service.CompanyService;
import org.springframework.stereotype.Component;

/**
 * Created with IntelliJ IDEA.
 * Date: 2019/2/18
 * Time: 14:57
 *
 * @author: 二条
 * Description:
 */
@Component
public class CompanyServiceHystrix implements CompanyService {

    @Override
    public String sayHi(String name) {
        return "em....";
    }
}