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";
|
|
}
|