zhongrj
2023-10-20 bb7971ee1b8dbfaa0e1ceb0d60daee974da77671
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
package cn.gistack.sm.sjztods.constant;
 
/**
 * 中台接口请求信息常量
 * @author zhongrj
 * @since 2023-04-21
 */
public class ZtApiUrlConstant {
 
    /**
     * 请求头url 前缀(dev)
     */
    public static final String url_prefix_dev = "http://10.10.2.192";
 
    /**
     * 请求头url 前缀(prod)
     */
    public static final String url_prefix_prod = "http://10.42.6.192";
 
    /**
     * 请求头url 前缀(prod)
     */
    public static final String url_prefix_test = "http://10.42.6.192";
 
    /**
     *  水库库容统计情况
     */
    public static final String cap_water_detail = "/services/1234567890ABCDEFGHIJKLMN/cap_water_detail";
 
    /**
     * 库容按行政区统计情况
     */
    public static final String cap_tot_status = "/services/1234567890ABCDEFGHIJKLMN/cap_tot_status";
 
}