**
* @GetMapping(value = "/get")
* public CommonResult create(@RequestParam String id ){
* return restTemplate.getForObject(BASE_URL+"payment/get/?id="+id,CommonResult.class);
* }
*
*
* @GetMapping(value = "/get/{id}")
* * public CommonResult create(@PathVariable String id ){
* * return restTemplate.getForObject(BASE_URL+"payment/get/"+id,CommonResult.class);
* * }
*/
网友评论