package com.lcry.springcloud.service; import org.springframework.web.bind.annotation.PathVariable; /** * PaymentService * * @author lcry * @date 2020/03/15 0:02 */ public interface PaymentService { public String paymentInfo_OK(Integer id); public String paymentInfo_TimeOut(Integer id); public String paymentCircuitBreaker(@PathVariable("id") Integer id); }