无关风月
9 小时以前 4c9035836c18886883d3f69d8443c53d15b068fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.dsh.activity.feignclient.other;
 
import com.dsh.activity.entity.Vip;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
 
import java.util.List;
 
 
@FeignClient("mb-cloud-other")
public interface VipClient {
 
 
    @PostMapping("/vip/listAll")
    List<Vip> listAll();
    @PostMapping("/vip/getVipByIds")
    List<Vip> getVipByIds(@RequestBody String ids);
    @PostMapping("/vip/getAgreement")
    String getAgreement();
 
}