liuxiaolong
2019-05-06 1043e7be0b7503d7b0f488dc0d8d11a2b8079dee
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.cloud.control.utils;
 
import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
 
@Component
@Data
public class EnumStr {
    //user 用户模块 接口 ip
    @Value("${loginData.redUrl}")
    private   String userHOSTNAME = "";
    //user 用户模块 接口 端口
    @Value("${loginData.redPort}")
    private  int userHTTP_PORT =3694;
 
    @Value("${fdfsImgUrl.server}")
    private String  httpImgUrl = "";
 
    @Value("${fdfsImgUrl.port}")
    private String  httpImgPort = "";
 
    //user 用户模块 接口 ip
    //es 数据 查询 接口 ip
    @Value("${es.es_network_host}")
    private   String esHOSTNAME = "192.168.1.203";
    //es 数据 查询 接口 端口
    @Value("${es.es_network_http_port}")
    private  int esHTTP_PORT =9200;
    //es 数据 查询 index 接口 端口
    @Value("${es.es_Index_url}")
    private String esIndexUrl = "";
    @Value("${jni.extractFace}")
    private String  extractFace = "";
 
    // c 服务 端口
    @Value("${cserver.port}")
    private  String cServerPort = "11111";
 
    public static final String addDataBaseUrl = "/createDatabase";
 
    public static final String updateDataBaseUrl = "/updateDatabase";
 
    public static final String deleteDataBaseUrl = "/deleteDatabase";
    // 布控平台
    public static final String conCenter = "conCenter";
 
    /**
     * 设备管理url
     */
    @Value("${deviceService.url}")
    private String deviceServiceUrl = "";
 
    /**
     * 设备管理的端口
     */
    @Value("${deviceService.port}")
    private String deviceServicePort = "";
 
 
}