parent
aeecbea7af
commit
1363dc4836
6 changed files with 74 additions and 7 deletions
@ -1,13 +1,30 @@ |
|||||||
package org.yzh.commons.constant; |
package org.yzh.commons.constant; |
||||||
|
|
||||||
public interface BusinessConstant { |
public interface BusinessConstant { |
||||||
|
/** |
||||||
|
* 通用日志前缀 |
||||||
|
*/ |
||||||
String LOGGER_PREFIX = " --- custom log --- "; |
String LOGGER_PREFIX = " --- custom log --- "; |
||||||
|
|
||||||
|
/** |
||||||
|
* 默认通道号 |
||||||
|
*/ |
||||||
Integer DEFAULT_CHANNEL_NO = 9; |
Integer DEFAULT_CHANNEL_NO = 9; |
||||||
|
|
||||||
|
/** |
||||||
|
* 直播推流状态 |
||||||
|
*/ |
||||||
String LIVE_STATUS_ONLINE = "online"; |
String LIVE_STATUS_ONLINE = "online"; |
||||||
String LIVE_STATUS_WAITING = "waiting"; |
String LIVE_STATUS_WAITING = "waiting"; |
||||||
String LIVE_STATUS_OFFLINE = "offline"; |
String LIVE_STATUS_OFFLINE = "offline"; |
||||||
|
|
||||||
|
/** |
||||||
|
* 慢直播服务更新推流车辆和直播推流状态接口地址 |
||||||
|
*/ |
||||||
String LIVE_SERVER_UPDATE_PUSH_CAR = "http://42.192.165.208:8002/blade-business/common-api/set-push-car-and-stat"; |
String LIVE_SERVER_UPDATE_PUSH_CAR = "http://42.192.165.208:8002/blade-business/common-api/set-push-car-and-stat"; |
||||||
|
|
||||||
|
/** |
||||||
|
* jtt1078服务IP地址 |
||||||
|
*/ |
||||||
|
String JTT1078_SERVER_HOST = "112.6.27.89"; |
||||||
} |
} |
||||||
|
|||||||
Loading…
Reference in new issue