吉安感知网项目-后端
linwei
2026-01-27 8eefac7a9b2b6ac0e7b005e1ae4e3e0bdf8e3f7f
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
30
31
32
33
34
35
36
37
38
package org.sxkj.common.jaxt;
 
/**
 * @Description 星图接口调用类
 * @Author AIX
 * @Date 2026/1/26 15:09
 * @Version 1.0
 */
public class JianXingTuApiClient {
 
    /**
     * 基础URL
     */
    private static final String BASE_URL = "http://218.202.104.82:8200";
 
    /**
     * 登录接口路径
     *  POST
     *  参数:username,password,mobile
     */
    private static final String LOGIN_URL_POST = "/auth/login";
    /**
     * 获设备列表-无人机
     */
    private static final String GET_DEVICE_LIST_URL_POST = "/webservice/webservice/devicePilot/queryList";
    /**
     * 获设备列表-飞机
     */
    private static final String GET_PLANE_LIST_URL_POST = "/webservice/webservice/deviceAirport/queryList";
 
    /**
     * 获取登录接口路径
     * @return 登录接口路径
     */
    public static String getLoginUrl() {
        return BASE_URL + LOGIN_URL_POST;
    }
}