Compare commits

..

No commits in common. "42690164fba2dfd3e4f88ef41138ef5a28224f3b" and "2d41de0c660e64ab1e3cadb85841918fb67874cd" have entirely different histories.

8 changed files with 0 additions and 86 deletions

View File

@ -1,19 +0,0 @@
package io.renren.common.domain;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;
/**
* 包头区域配置项
*/
@Data
@Component
@PropertySource("classpath:/domain/baotou.properties")
@ConfigurationProperties(prefix = "baotou")
public class BaoTouProperties {
private String hlsurl;
}

View File

@ -1,18 +0,0 @@
package io.renren.common.domain;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;
/**
* 青岛市区
*/
@Data
@Component
@PropertySource("classpath:/domain/tsingtao.properties")
@ConfigurationProperties(prefix = "tsingtao")
public class TsingtaoProperties {
}

View File

@ -1,18 +0,0 @@
package io.renren.common.domain;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;
/**
* 青岛西海岸
*/
@Data
@Component
@PropertySource("classpath:/domain/tsingtao_xha.properties")
@ConfigurationProperties(prefix = "tsingtao_xha")
public class Tsingtao_xhaProperties {
}

View File

@ -1,6 +1,3 @@
project:
# 平台部署位置 0青岛市区 1青岛西海岸 2包头
place: 0
# 大数据部门相关配置
big_date:
name: 青岛市大数据发展管理局

View File

@ -1 +0,0 @@
baotou.hlsurl=http://10.110.205.1:18088/server/device/hisdeviceapplylist/url/%s

View File

@ -212,31 +212,4 @@ public interface Constant {
return value;
}
}
/**
* 项目运行地点
*/
enum ProjectPlace {
/**
* 青岛市区
*/
TSINGTAO(0),
/**
* 青岛西海岸
*/
TSINGTAO_XHA(1),
/**
* 包头
*/
BAOTOU(2);
private int value;
ProjectPlace(int value) {
this.value = value;
}
public int getValue() {
return value;
}
}
}