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 cn.gistack.nky.constant;
|
| /**
| * 中台接口请求信息常量
| * @author zhongrj
| * @since 2023-04-21
| */
| public class ZtConfigConstant {
|
| /**
| * 请求头 key
| */
| public static final String header_key = "apiKey";
|
| /**
| * 请求头 value
| */
| public static final String header_value = "F1DBECD719108635189480CF60E6553ADB3109616426BD537F25A430DFC613B491A025C4A51E77FD08C6E5B7CBE05917A461286E7B6D69F1AB1B14F946149D2065B0C675F8FEDF4B9B05C1496881BC5A";
|
| /**
| * 请求头url 前缀(prod)
| */
| public static final String url_prefix = "http://10.42.6.192";
|
| /**
| * 水位数据缺失
| */
| public static final String realtime_op_sy_api = url_prefix + "/services/1234567890ABCDEFGHIJKLMN/realtime/op/sy/api";
| }
|
|