‘liusuyi’
2023-07-24 3b541e81611079a5a1c214440eed704cbb6b38af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ruoyi.utils.forest;
 
import com.dtflys.forest.annotation.DataVariable;
import com.dtflys.forest.annotation.Get;
import com.dtflys.forest.annotation.JSONBody;
import com.dtflys.forest.annotation.Post;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;
 
@Service
public interface UavClient {
    @Get("http://www.baidu.com")
    String test();
 
    public static String IP = "http://112.98.126.2:6100/";
 
    @UavAuth(token = "${token}")
    @Get(IP + "${url}")
    String GET(@DataVariable("url") String url, @DataVariable("token") String token, @JSONBody String body);
 
    @UavAuth(token = "${token}")
    @Post(IP + "${url}")
    String POST(@DataVariable("url") String url, @DataVariable("token") String token, @JSONBody String body);
    @UavAuth(token = "${token}")
    @Post(IP + "${url}")
    String DELETE(@DataVariable("url") String url, @DataVariable("token") String token, @JSONBody String body);
 
 
}