liuxiaolong
2019-05-06 f99bc8c6a1d10610373738edd7d0aa0181c81d99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
package com.cloud.user.feign;
 
//import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
 
//@FeignClient("notification-center")
@Service
public interface SmsClient {
 
    @GetMapping(value = "/notification-anon/internal/phone", params = { "key", "code" })
    String matcheCodeAndGetPhone(@RequestParam("key") String key, @RequestParam("code") String code,
            @RequestParam(value = "delete", required = false) Boolean delete,
            @RequestParam(value = "second", required = false) Integer second);
}
*/