Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
a2bace4f
Commit
a2bace4f
authored
Dec 15, 2023
by
maoying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
整理装备系统配置文件,除去无用配置信息
parent
b738135a
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
451 additions
and
360 deletions
+451
-360
AnalysisReportLogController.java
...n/equipmanage/controller/AnalysisReportLogController.java
+5
-2
BuildingServiceImpl.java
...yeejoin/equipmanage/service/impl/BuildingServiceImpl.java
+1
-2
ConfirmAlarmServiceImpl.java
...oin/equipmanage/service/impl/ConfirmAlarmServiceImpl.java
+0
-3
EquipmentDetailServiceImpl.java
.../equipmanage/service/impl/EquipmentDetailServiceImpl.java
+0
-3
EquipmentSpecificAlarmServiceImpl.java
...anage/service/impl/EquipmentSpecificAlarmServiceImpl.java
+0
-3
EquipmentSpecificSerivceImpl.java
...quipmanage/service/impl/EquipmentSpecificSerivceImpl.java
+0
-3
SupervisionVideoServiceImpl.java
...equipmanage/service/impl/SupervisionVideoServiceImpl.java
+1
-2
application-dev.properties
...ystem-equip/src/main/resources/application-dev.properties
+72
-80
application-docker.properties
...em-equip/src/main/resources/application-docker.properties
+85
-64
application-jcs.properties
...ystem-equip/src/main/resources/application-jcs.properties
+85
-64
application-qa.properties
...system-equip/src/main/resources/application-qa.properties
+85
-64
application-test.properties
...stem-equip/src/main/resources/application-test.properties
+85
-64
application.properties
...ot-system-equip/src/main/resources/application.properties
+32
-6
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/controller/AnalysisReportLogController.java
View file @
a2bace4f
...
@@ -38,8 +38,6 @@ import java.util.Date;
...
@@ -38,8 +38,6 @@ import java.util.Date;
@RequestMapping
(
value
=
"/analysis-report-log"
,
produces
=
MediaType
.
APPLICATION_JSON_UTF8_VALUE
)
@RequestMapping
(
value
=
"/analysis-report-log"
,
produces
=
MediaType
.
APPLICATION_JSON_UTF8_VALUE
)
public
class
AnalysisReportLogController
extends
AbstractBaseController
{
public
class
AnalysisReportLogController
extends
AbstractBaseController
{
@Value
(
"${equip.report.url}"
)
private
String
reportUrlBase
;
// 工具栏中,显示第几个按钮,从左到右,可由逗号隔开显示多个
// 工具栏中,显示第几个按钮,从左到右,可由逗号隔开显示多个
private
String
showButton
=
"6"
;
private
String
showButton
=
"6"
;
...
@@ -68,6 +66,9 @@ public class AnalysisReportLogController extends AbstractBaseController {
...
@@ -68,6 +66,9 @@ public class AnalysisReportLogController extends AbstractBaseController {
return
iAnalysisReportLogService
.
listPage
(
page
,
analysisReportLog
);
return
iAnalysisReportLogService
.
listPage
(
page
,
analysisReportLog
);
}
}
/**
V3.7.1.1版本无用接口,功能已弃用
*/
@GetMapping
(
value
=
"/showReport"
)
@GetMapping
(
value
=
"/showReport"
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"查看报表"
,
notes
=
"查看报表"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"查看报表"
,
notes
=
"查看报表"
)
...
@@ -78,6 +79,8 @@ public class AnalysisReportLogController extends AbstractBaseController {
...
@@ -78,6 +79,8 @@ public class AnalysisReportLogController extends AbstractBaseController {
&&
!
""
.
equals
(
createDate
))
{
&&
!
""
.
equals
(
createDate
))
{
String
urlType
=
AnalysisReportEnum
.
getOne
(
reportType
).
getReportUrl
();
String
urlType
=
AnalysisReportEnum
.
getOne
(
reportType
).
getReportUrl
();
// _t= 表示工具栏中,显示第几个按钮 1,3
// _t= 表示工具栏中,显示第几个按钮 1,3
//原配置文件内容
String
reportUrlBase
=
"/fire-fighting-system/ureport/preview?_u=file:"
;
String
url
=
reportUrlBase
+
urlType
+
"&createDate="
+
createDate
+
"&startDate="
+
startDate
+
"&endDate="
String
url
=
reportUrlBase
+
urlType
+
"&createDate="
+
createDate
+
"&startDate="
+
startDate
+
"&endDate="
+
endDate
+
"&_t="
+
showButton
;
+
endDate
+
"&_t="
+
showButton
;
// 获取公司名称
// 获取公司名称
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/BuildingServiceImpl.java
View file @
a2bace4f
...
@@ -150,8 +150,7 @@ public class BuildingServiceImpl extends ServiceImpl<BuildingMapper, Building> i
...
@@ -150,8 +150,7 @@ public class BuildingServiceImpl extends ServiceImpl<BuildingMapper, Building> i
@Autowired
@Autowired
private
JCSRemoteService
jcsRemoteService
;
private
JCSRemoteService
jcsRemoteService
;
@Value
(
"${window.vedioFormat}"
)
private
String
vedioFormat
;
@Autowired
@Autowired
private
SourceSceneMapper
sourceSceneMapper
;
private
SourceSceneMapper
sourceSceneMapper
;
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/ConfirmAlarmServiceImpl.java
View file @
a2bace4f
...
@@ -93,9 +93,6 @@ public class ConfirmAlarmServiceImpl extends ServiceImpl<ConfirmAlarmMapper, Equ
...
@@ -93,9 +93,6 @@ public class ConfirmAlarmServiceImpl extends ServiceImpl<ConfirmAlarmMapper, Equ
@Value
(
"${systemctl.jcs.switch}"
)
@Value
(
"${systemctl.jcs.switch}"
)
private
Boolean
jcsSwitch
;
private
Boolean
jcsSwitch
;
@Value
(
"${window.vedioFormat}"
)
String
vedioFormat
;
@Value
(
"${isSendApp}"
)
@Value
(
"${isSendApp}"
)
private
Boolean
isSendApp
;
private
Boolean
isSendApp
;
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/EquipmentDetailServiceImpl.java
View file @
a2bace4f
...
@@ -77,9 +77,6 @@ public class EquipmentDetailServiceImpl extends ServiceImpl<EquipmentDetailMappe
...
@@ -77,9 +77,6 @@ public class EquipmentDetailServiceImpl extends ServiceImpl<EquipmentDetailMappe
@Autowired
@Autowired
private
IExcelService
excelService
;
private
IExcelService
excelService
;
@Value
(
"${fileserver_domain}"
)
private
String
fileServer
;
@Value
(
"${auth-key-fire-equip:fire_equip_info}"
)
@Value
(
"${auth-key-fire-equip:fire_equip_info}"
)
private
String
authKey
;
private
String
authKey
;
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/EquipmentSpecificAlarmServiceImpl.java
View file @
a2bace4f
...
@@ -93,9 +93,6 @@ public class EquipmentSpecificAlarmServiceImpl extends ServiceImpl<EquipmentSpec
...
@@ -93,9 +93,6 @@ public class EquipmentSpecificAlarmServiceImpl extends ServiceImpl<EquipmentSpec
@Autowired
@Autowired
private
SystemctlFeign
systemctlFeign
;
private
SystemctlFeign
systemctlFeign
;
@Value
(
"${window.vedioFormat}"
)
String
vedioFormat
;
@Value
(
"${equipment.pressurepump.start}"
)
@Value
(
"${equipment.pressurepump.start}"
)
private
String
pressurePumpStart
;
private
String
pressurePumpStart
;
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/EquipmentSpecificSerivceImpl.java
View file @
a2bace4f
...
@@ -192,9 +192,6 @@ public class EquipmentSpecificSerivceImpl extends ServiceImpl<EquipmentSpecificM
...
@@ -192,9 +192,6 @@ public class EquipmentSpecificSerivceImpl extends ServiceImpl<EquipmentSpecificM
@Value
(
"${systemctl.sync.switch}"
)
@Value
(
"${systemctl.sync.switch}"
)
private
Boolean
syncSwitch
;
private
Boolean
syncSwitch
;
@Value
(
"${window.vedioFormat}"
)
String
vedioFormat
;
@Value
(
"classpath:/json/equipmentCode.json"
)
@Value
(
"classpath:/json/equipmentCode.json"
)
private
Resource
equipmentCode
;
private
Resource
equipmentCode
;
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/SupervisionVideoServiceImpl.java
View file @
a2bace4f
...
@@ -39,8 +39,7 @@ public class SupervisionVideoServiceImpl extends ServiceImpl<SupervisionVideoMap
...
@@ -39,8 +39,7 @@ public class SupervisionVideoServiceImpl extends ServiceImpl<SupervisionVideoMap
@Autowired
@Autowired
SupervisionVideoMapper
supervisionVideoMapper
;
SupervisionVideoMapper
supervisionVideoMapper
;
@Value
(
"${window.vedioFormat.video}"
)
String
vedioFormat
;
@Autowired
@Autowired
private
IVideoService
videoService
;
private
IVideoService
videoService
;
@Autowired
@Autowired
...
...
amos-boot-system-equip/src/main/resources/application-dev.properties
View file @
a2bace4f
...
@@ -12,22 +12,18 @@ spring.datasource.hikari.max-lifetime= 1800000
...
@@ -12,22 +12,18 @@ spring.datasource.hikari.max-lifetime= 1800000
spring.datasource.hikari.connection-timeout
=
60000
spring.datasource.hikari.connection-timeout
=
60000
spring.datasource.hikari.connection-test-query
=
SELECT 1
spring.datasource.hikari.connection-test-query
=
SELECT 1
# ???????
##########eureka配置信息###############
fileserver_domain
=
http://172.16.11.201:9000/
#eureka.instance.ip-address= 172.16.3.135
eureka.instance.hostname
=
172.16.11.201
eureka.instance.prefer-ip-address
=
true
eureka.instance.prefer-ip-address
=
true
eureka.client.serviceUrl.defaultZone
=
http://${spring.security.user.name}:${spring.security.user.password}@172.16.11.201:10001/eureka/
#服务实例ip地址,若eureka.instance.prefer-ip-address=false,ip-address设置失效,一般情况不用设置。
#eureka.instance.ip-address= 172.16.3.135
#eureka服务ip配置,可填写固定ip地址
eureka.instance.hostname
=
eureka
#eureka服务配置的校验账号及密码,配置需和eureka服务后台配置文件中一致
spring.security.user.name
=
admin
spring.security.user.name
=
admin
spring.security.user.password
=
a1234560
spring.security.user.password
=
a1234560
security.productApp
=
STUDIO_APP_MOBILE
eureka.client.serviceUrl.defaultZone
=
http://${spring.security.user.name}:${spring.security.user.password}@${eureka.instance.hostname}:10001/eureka/
##########eureka配置信息###############
amos.system.user.user-name
=
fas_system
amos.system.user.password
=
a1234560
amos.system.user.app-key
=
studio_normalapp_3056965
amos.system.user.product
=
STUDIO_APP_WEB
#redis
#redis
spring.redis.database
=
1
spring.redis.database
=
1
...
@@ -50,110 +46,107 @@ mqtt.scene.host=mqtt://172.16.11.201:8083/mqtt
...
@@ -50,110 +46,107 @@ mqtt.scene.host=mqtt://172.16.11.201:8083/mqtt
mqtt.client.product.id
=
mqtt
mqtt.client.product.id
=
mqtt
mqtt.topic
=
topic_mqtt
mqtt.topic
=
topic_mqtt
spring.mqtt.completionTimeout
=
3000
spring.mqtt.completionTimeout
=
3000
# influxDB
spring.influx.url
=
http://172.16.11.201:8086
spring.influx.password
=
Yeejoin@2020
spring.influx.user
=
root
spring.influx.database
=
iot_platform
spring.influx.retention_policy
=
default
spring.influx.retention_policy_time
=
30d
spring.influx.actions
=
10000
spring.influx.bufferLimit
=
20000
#????
##????????
jobs.month.cron
=
0 50 0 1 * ?
jobs.day.cron
=
0 5 0 * * ?
jobs.week.cron
=
0 25 0 ? * 1
jobs.day.cron.old
=
0 25 0 * * ?
#??????
#系统机器人账号
amos.system.user.user-name
=
fas_system
amos.system.user.password
=
a1234560
amos.system.user.app-key
=
studio_normalapp_3056965
amos.system.user.product
=
STUDIO_APP_WEB
security.productApp
=
STUDIO_APP_MOBILE
#向数字站同步设备,巡查点台账信息开关,适用于数字站1.0版本,目前停止同步,默认为false
systemctl.sync.switch
=
false
systemctl.sync.switch
=
false
#??JCS??
#数据JCS开关 设备资源数据权限配置,站端部署,库里只有单站数据可不进行开启(false),中心级部署或存在多站数据时需开启(true)数据权限过滤
systemctl.jcs.switch
=
false
systemctl.jcs.switch
=
true
#??????
#给平台同步告警数据,若不同步影响消防自动化告警消息框数据展示
systemctl.amos.switch
=
false
systemctl.amos.switch
=
true
#告警数据是否发送给App端,发送是通过jpush实现,需要有网情况下。目前电力消防不支持网络使用,默认不进行APP推送
isSendApp
=
false
isSendApp
=
false
#??????
equip.report.url
=
/fire-fighting-system/ureport/preview?_u=file:
#?????????
###############向数字化平台3.0进行告警转发配置信息################################
#告警推送开关,若无推送需求进行关闭(false)
dcs.send.message
=
false
dcs.send.message
=
false
#请求头参数
dcs.client-id
=
fire_system
dcs.client-id
=
fire_system
dcs.client.secret
=
fire_system
dcs.grant-type
=
client_credentials
dcs.grant-type
=
client_credentials
dcs.scope
=
all
dcs.scope
=
all
dcs.token-key
=
dcs_token_key
dcs.token-key
=
dcs_token_key
dcs.client.secret
=
fire_system
#华为roma秘钥每个站有区别与集成商索取
dcs.x.hw.id
=
io.cs
dcs.x.hw.id
=
io.cs
dcs.x.hw.appKey
=
i!YmnHgJ=Ysz8V+O@ZG237inQKfixkQ.-#-P3IlR8fO%.#F!g%35Z#@tp$6G+52v
dcs.x.hw.appKey
=
i!YmnHgJ=Ysz8V+O@ZG237inQKfixkQ.-#-P3IlR8fO%.#F!g%35Z#@tp$6G+52v
# \u7531\u4E8E\u76EE\u524D\u6709\u4E0D\u6B62\u4E00\u4E2A\u6570\u5B57\u7AD9\u5E73\u53F0\u5BF9\u5E94\u63A5\u53E3\u89C4\u8303\u4E0D\u4E00\u81F4\uFF0C\u6240\u4EE5\u6B64\u5904\u589E\u52A0\u914D\u7F6E\uFF0Ctrue\u8868\u793A\u9002\u7528\u4E8E\u5357\u745E\u79D1\u6280\u7684\u63A5\u53E3\u89C4\u8303
# \u7531\u4E8E\u76EE\u524D\u6709\u4E0D\u6B62\u4E00\u4E2A\u6570\u5B57\u7AD9\u5E73\u53F0\u5BF9\u5E94\u63A5\u53E3\u89C4\u8303\u4E0D\u4E00\u81F4\uFF0C\u6240\u4EE5\u6B64\u5904\u589E\u52A0\u914D\u7F6E\uFF0Ctrue\u8868\u793A\u9002\u7528\u4E8E\u5357\u745E\u79D1\u6280\u7684\u63A5\u53E3\u89C4\u8303
#平台集成商是否科技接口,(科技为true、继保和许继为false)
dcs.NRKJ.use
=
false
dcs.NRKJ.use
=
false
dcs.source.type
=
\u
9ad8
\u
7ea7
\u
5e94
\u7528
dcs.source.type
=
\u
9ad8
\u
7ea7
\u
5e94
\u7528
#数字化平台3.0权限接口
dcs.url.token
=
http://172.21.101.123/udaap-ddis/v1/cs/auth-service/oauth/token
dcs.url.token
=
http://172.21.101.123/udaap-ddis/v1/cs/auth-service/oauth/token
#数字化平台3.0告警存储接口
dcs.url.sendalarm
=
http://172.21.101.101/v1/cs/alarm-service/appalarm/sendalarm
dcs.url.sendalarm
=
http://172.21.101.101/v1/cs/alarm-service/appalarm/sendalarm
#dcs.url.token=https://192.168.4.89/v1/cs/auth-service/oauth/token
#################################################################################
#dcs.url.sendalarm=https://192.168.4.89/v1/cs/alarm-service/appalarm/sendalarm
#??????
#??????
param.system.online.date
=
2019-02-12
param.system.online.date
=
2019-02-12
# ???????? hls(?)/flv(?),???????????????
############数字1.0视频接入服务配置,其他版本不支持##################################
# 视频转码服务开关 hls(关)/flv(开),默认关闭,数字换流站1.0使用时开启
window.vedioFormat
=
hls
window.vedioFormat
=
hls
window.vedioFormat.video
=
flv
# 航天视频服务地址
# ????????
param.htvideo.url
=
http://192.168.4.174:9001;
param.htvideo.url
=
http://192.168.4.174:9001;
#
??????????
#
南瑞视频转码服务地址
param.nrvideo.url
=
http://198.87.103.158:8001;
param.nrvideo.url
=
http://198.87.103.158:8001;
#南瑞视频平台通过视频id获取flv格式视频播放地址
#??????????id??flv????????
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
#####################################################################################
# ???????????????
#装备服务在接收到站端iot推送的装备数据后进行influxdb存库
equipment.plan.monitor
=
92030200,92032200
#1.在装备接口消息处向influxdb/{productKey}/{deviceName} 消息地址推送数据,iot负责存库
equipment.plan.pump
=
92010600,92030600,92130400,92140200,92150300
#2.配置文件添加配置项开关,默认为关闭,该功能只使用于中心及系统
# ????????iotCode??????????????
#是否向iot推送消息
# ????
#iot.code.prefix.have.used=20210003,20210004,20210005
# ????
iot.code.prefix.have.used
=
#??????????iot??????????influxdb??
#1.?????????influxdb/{productKey}/{deviceName} ?????????iot????
#2.??????????????????????????????
#???iot????
isSendIot
=
false
isSendIot
=
false
#???30? ????
#站端编码及中文名称,用于数据上送
equipment.scrap.day
=
30
#????
equipment.scrap.cron
=
0 0 9 * * ?
#?????????????
equipment.pressurepump.start.cron
=
0 0 0 * * ?
# ???????
equipment.pressurepump.start
=
FHS_PressurePump_Start
# ?????????
equipment.pressurepump.pipepressure
=
FHS_PipePressureDetector_PipePressure
# ????
state.code
=
GW190301
state.code
=
GW190301
state.name
=
\u9526\u
5c4f
\u6362\u
6d41
\u
7ad9
#站端编码,用于物联报表查询
stationCode
=
LSHLZ1bZAJU645Pgl7
state.name
=
?????
#用于总部系统与站端系统逻辑区分,站端写zd总部默认为空
#???????????????????zd??????
system.type
=
zd
system.type
=
zd
#
??????????
#
遥测信号是否向直流中心推送,数字站默认不推送
is.open.telemetering
=
false
is.open.telemetering
=
false
# ????????
water.level.indexKey
=
FHS_FirePoolDevice_WaterLevel,FHS_LevelDetector_WaterLevel,FHS_WirelessliquidDetector_WaterLevel,CAFS_FoamTank_FoamTankLevel,CAFS_WaterTank_WaterTankLevel
# ????-????????(??KM)
# message 接收来自南瑞平台的告警事件描述,如:出现(即为true)
message.alarm.char
=
\u
51FA
\u
73B0
# 电建项目配置
mileage.parameter
=
0.5
mileage.parameter
=
0.5
#
????-??????????(??0???)
#
电建项目配置
mileage.segmentation.cron
=
0 0 0 * * ?
mileage.segmentation.cron
=
0 0 0 * * ?
# influxDB
# 机场使用特殊配置iotCode前缀,装备、车辆及导入使用到
spring.influx.url
=
http://172.16.11.201:8086
# 机场使用
spring.influx.password
=
Yeejoin@2020
#iot.code.prefix.have.used=20210003,20210004,20210005
spring.influx.user
=
root
# 电力使用
spring.influx.database
=
iot_platform
iot.code.prefix.have.used
=
spring.influx.retention_policy
=
default
spring.influx.retention_policy_time
=
30d
spring.influx.actions
=
10000
spring.influx.bufferLimit
=
20000
# message\u670D\u52A1\u8F6C\u53D1\u544A\u8B66\u4FE1\u53F7\u7279\u6B8A\u5224\u65AD\u5B57\u7B26\u96C6
message.alarm.char
=
\u
51FA
\u
73B0
\ No newline at end of file
amos-boot-system-equip/src/main/resources/application-docker.properties
View file @
a2bace4f
spring.datasource.driver-class-name
=
com.mysql.cj.jdbc.Driver
spring.datasource.driver-class-name
=
com.mysql.cj.jdbc.Driver
spring.datasource.url
=
jdbc:mysql://172.16.1
0.215:3307/dl_business_v3.0.1.3
?useUnicode=true&allowMultiQueries=true&characterEncoding=utf-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai
spring.datasource.url
=
jdbc:mysql://172.16.1
1.201:3306/dl_business
?useUnicode=true&allowMultiQueries=true&characterEncoding=utf-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai
spring.datasource.username
=
root
spring.datasource.username
=
root
spring.datasource.password
=
Yeejoin@2020
spring.datasource.password
=
Yeejoin@2020
spring.datasource.type
=
com.zaxxer.hikari.HikariDataSource
spring.datasource.type
=
com.zaxxer.hikari.HikariDataSource
...
@@ -12,30 +12,22 @@ spring.datasource.hikari.max-lifetime= 1800000
...
@@ -12,30 +12,22 @@ spring.datasource.hikari.max-lifetime= 1800000
spring.datasource.hikari.connection-timeout
=
60000
spring.datasource.hikari.connection-timeout
=
60000
spring.datasource.hikari.connection-test-query
=
SELECT 1
spring.datasource.hikari.connection-test-query
=
SELECT 1
##########eureka配置信息###############
# \u6587\u4EF6\u670D\u52A1\u5668\u5730\u5740
fileserver_domain
=
http://172.16.10.215:9000/
#eureka.instance.ip-address= 172.16.3.135
eureka.instance.hostname
=
172.16.10.215
eureka.instance.prefer-ip-address
=
true
eureka.instance.prefer-ip-address
=
true
eureka.client.serviceUrl.defaultZone
=
http://${spring.security.user.name}:${spring.security.user.password}@172.16.10.215:10001/eureka/
#服务实例ip地址,若eureka.instance.prefer-ip-address=false,ip-address设置失效,一般情况不用设置。
#eureka.instance.ip-address= 172.16.3.135
#eureka服务ip配置,可填写固定ip地址
eureka.instance.hostname
=
eureka
#eureka服务配置的校验账号及密码,配置需和eureka服务后台配置文件中一致
spring.security.user.name
=
admin
spring.security.user.name
=
admin
spring.security.user.password
=
a1234560
spring.security.user.password
=
a1234560
security.productApp
=
STUDIO_APP_MOBILE
eureka.client.serviceUrl.defaultZone
=
http://${spring.security.user.name}:${spring.security.user.password}@${eureka.instance.hostname}:10001/eureka/
##########eureka配置信息###############
amos.system.user.user-name
=
fas_system
amos.system.user.password
=
a1234560
amos.system.user.app-key
=
studio_normalapp_3056965
amos.system.user.product
=
STUDIO_APP_WEB
#redis
#redis
spring.redis.database
=
1
spring.redis.database
=
1
spring.redis.host
=
172.16.1
0.215
spring.redis.host
=
172.16.1
1.201
spring.redis.port
=
6379
spring.redis.port
=
6379
spring.redis.password
=
yeejoin@2020
spring.redis.password
=
yeejoin@2020
spring.redis.lettuce.pool.max-active
=
200
spring.redis.lettuce.pool.max-active
=
200
...
@@ -47,84 +39,114 @@ spring.redis.expire.time=30000
...
@@ -47,84 +39,114 @@ spring.redis.expire.time=30000
## emqx
## emqx
emqx.clean-session
=
true
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.1
0.215
:1883
emqx.broker
=
tcp://172.16.1
1.201
:1883
emqx.user-name
=
admin
emqx.user-name
=
admin
emqx.password
=
public
emqx.password
=
public
mqtt.scene.host
=
mqtt://172.16.1
0.215
:8083/mqtt
mqtt.scene.host
=
mqtt://172.16.1
1.201
:8083/mqtt
mqtt.client.product.id
=
mqtt
mqtt.client.product.id
=
mqtt
mqtt.topic
=
topic_mqtt
mqtt.topic
=
topic_mqtt
spring.mqtt.completionTimeout
=
3000
spring.mqtt.completionTimeout
=
3000
# influxDB
spring.influx.url
=
http://172.16.11.201:8086
spring.influx.password
=
Yeejoin@2020
spring.influx.user
=
root
spring.influx.database
=
iot_platform
spring.influx.retention_policy
=
default
spring.influx.retention_policy_time
=
30d
spring.influx.actions
=
10000
spring.influx.bufferLimit
=
20000
#系统机器人账号
amos.system.user.user-name
=
fas_system
amos.system.user.password
=
a1234560
amos.system.user.app-key
=
studio_normalapp_3056965
amos.system.user.product
=
STUDIO_APP_WEB
security.productApp
=
STUDIO_APP_MOBILE
#定时任务
##物联报表定时任务
jobs.month.cron
=
0 50 0 1 * ?
jobs.day.cron
=
0 5 0 * * ?
jobs.week.cron
=
0 25 0 ? * 1
jobs.day.cron.old
=
0 25 0 * * ?
#
数据同步开关
#
向数字站同步设备,巡查点台账信息开关,适用于数字站1.0版本,目前停止同步,默认为false
systemctl.sync.switch
=
false
systemctl.sync.switch
=
false
#数据JCS开关
#数据JCS开关 设备资源数据权限配置,站端部署,库里只有单站数据可不进行开启(false),中心级部署或存在多站数据时需开启(true)数据权限过滤
systemctl.jcs.switch
=
false
systemctl.jcs.switch
=
true
#平台数据开关
#给平台同步告警数据,若不同步影响消防自动化告警消息框数据展示
systemctl.amos.switch
=
false
systemctl.amos.switch
=
true
#告警数据是否发送给App端,发送是通过jpush实现,需要有网情况下。目前电力消防不支持网络使用,默认不进行APP推送
isSendApp
=
false
isSendApp
=
false
#报表数据地址
equip.report.url
=
/fire-fighting-system/ureport/preview?_u=file:
#数字化南瑞平台接口
dcs.url.token
=
http://198.87.103.158:8001/auth-service/oauth/token
dcs.url.sendalarm
=
http://198.87.103.158:8001/alarm-service/appalarm/sendalarm
#系统上线时间
###############向数字化平台3.0进行告警转发配置信息################################
#告警推送开关,若无推送需求进行关闭(false)
dcs.send.message
=
false
#请求头参数
dcs.client-id
=
fire_system
dcs.client.secret
=
fire_system
dcs.grant-type
=
client_credentials
dcs.scope
=
all
dcs.token-key
=
dcs_token_key
#华为roma秘钥每个站有区别与集成商索取
dcs.x.hw.id
=
io.cs
dcs.x.hw.appKey
=
i!YmnHgJ=Ysz8V+O@ZG237inQKfixkQ.-#-P3IlR8fO%.#F!g%35Z#@tp$6G+52v
# \u7531\u4E8E\u76EE\u524D\u6709\u4E0D\u6B62\u4E00\u4E2A\u6570\u5B57\u7AD9\u5E73\u53F0\u5BF9\u5E94\u63A5\u53E3\u89C4\u8303\u4E0D\u4E00\u81F4\uFF0C\u6240\u4EE5\u6B64\u5904\u589E\u52A0\u914D\u7F6E\uFF0Ctrue\u8868\u793A\u9002\u7528\u4E8E\u5357\u745E\u79D1\u6280\u7684\u63A5\u53E3\u89C4\u8303
#平台集成商是否科技接口,(科技为true、继保和许继为false)
dcs.NRKJ.use
=
false
dcs.source.type
=
\u
9ad8
\u
7ea7
\u
5e94
\u7528
#数字化平台3.0权限接口
dcs.url.token
=
http://172.21.101.123/udaap-ddis/v1/cs/auth-service/oauth/token
#数字化平台3.0告警存储接口
dcs.url.sendalarm
=
http://172.21.101.101/v1/cs/alarm-service/appalarm/sendalarm
#################################################################################
#??????
param.system.online.date
=
2019-02-12
param.system.online.date
=
2019-02-12
# 视频转码服务开关 hls(关)/flv(开),默认关闭,数字换流站使用时开启
############数字1.0视频接入服务配置,其他版本不支持##################################
# 视频转码服务开关 hls(关)/flv(开),默认关闭,数字换流站1.0使用时开启
window.vedioFormat
=
hls
window.vedioFormat
=
hls
window.vedioFormat.video
=
flv
# 航天视频服务地址
# 航天视频服务地址
param.htvideo.url
=
http://192.168.4.174:9001;
param.htvideo.url
=
http://192.168.4.174:9001;
# 南瑞视频转码服务地址
# 南瑞视频转码服务地址
param.nrvideo.url
=
http://198.87.103.158:8001;
param.nrvideo.url
=
http://198.87.103.158:8001;
#南瑞视频平台通过视频id获取flv格式视频播放地址
#南瑞视频平台通过视频id获取flv格式视频播放地址
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
#####################################################################################
# 预案消防炮、消防泵设备维度类型
equipment.plan.monitor
=
92030200,92032200
equipment.plan.pump
=
92010600,92030600,92130400,92140200,92150300
# 机场使用特殊配置iotCode前缀,装备、车辆及导入使用到
# 机场使用
#iot.code.prefix.have.used=20210003,20210004,20210005
# 电力使用
iot.code.prefix.have.used
=
#装备服务在接收到站端iot推送的装备数据后进行influxdb存库
#装备服务在接收到站端iot推送的装备数据后进行influxdb存库
#1.在装备接口消息处向influxdb/{productKey}/{deviceName} 消息地址推送数据,iot负责存库
#1.在装备接口消息处向influxdb/{productKey}/{deviceName} 消息地址推送数据,iot负责存库
#2.配置文件添加配置项开关,默认为关闭,该功能只使用于中心及系统
#2.配置文件添加配置项开关,默认为关闭,该功能只使用于中心及系统
#是否向iot推送消息
#是否向iot推送消息
isSendIot
=
false
isSendIot
=
false
#报废前30日 发起提醒
#站端编码及中文名称,用于数据上送
equipment.scrap.day
=
30
#提醒时间
equipment.scrap.cron
=
0 0 9 * * ?
# 稳压泵启动信号
equipment.pressurepump.start
=
FHS_PressurePump_Start
# 稳压泵管网压力信号
equipment.pressurepump.pipepressure
=
FHS_PipePressureDetector_PipePressure
# 站端标识
state.code
=
GW190301
state.code
=
GW190301
state.name
=
\u9526\u
5c4f
\u6362\u
6d41
\u
7ad9
state.name
=
\u9526\u
5c4f
\u6362\u
6d41
\u
7ad9
#站端编码,用于物联报表查询
stationCode
=
LSHLZ1bZAJU645Pgl7
#用于总部系统与站端系统逻辑区分,站端写zd总部默认为空
#用于总部系统与站端系统逻辑区分,站端写zd总部默认为空
system.type
=
zd
system.type
=
zd
#
是否开启遥测数据上报
#
遥测信号是否向直流中心推送,数字站默认不推送
is.open.telemetering
=
false
is.open.telemetering
=
false
# 水池液位相关信号
water.level.indexKey
=
FHS_FirePoolDevice_WaterLevel,FHS_LevelDetector_WaterLevel,FHS_WirelessliquidDetector_WaterLevel,CAFS_FoamTank_FoamTankLevel,CAFS_WaterTank_WaterTankLevel
\ No newline at end of file
# message 接收来自南瑞平台的告警事件描述,如:出现(即为true)
message.alarm.char
=
\u
51FA
\u
73B0
# 电建项目配置
mileage.parameter
=
0.5
# 电建项目配置
mileage.segmentation.cron
=
0 0 0 * * ?
# 机场使用特殊配置iotCode前缀,装备、车辆及导入使用到
# 机场使用
#iot.code.prefix.have.used=20210003,20210004,20210005
# 电力使用
iot.code.prefix.have.used
=
amos-boot-system-equip/src/main/resources/application-jcs.properties
View file @
a2bace4f
spring.datasource.driver-class-name
=
com.mysql.cj.jdbc.Driver
spring.datasource.driver-class-name
=
com.mysql.cj.jdbc.Driver
spring.datasource.url
=
jdbc:mysql://172.16.1
0.215:3307/dl_business_v3.0.1.3
?useUnicode=true&allowMultiQueries=true&characterEncoding=utf-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai
spring.datasource.url
=
jdbc:mysql://172.16.1
1.201:3306/dl_business
?useUnicode=true&allowMultiQueries=true&characterEncoding=utf-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai
spring.datasource.username
=
root
spring.datasource.username
=
root
spring.datasource.password
=
Yeejoin@2020
spring.datasource.password
=
Yeejoin@2020
spring.datasource.type
=
com.zaxxer.hikari.HikariDataSource
spring.datasource.type
=
com.zaxxer.hikari.HikariDataSource
...
@@ -12,30 +12,22 @@ spring.datasource.hikari.max-lifetime= 1800000
...
@@ -12,30 +12,22 @@ spring.datasource.hikari.max-lifetime= 1800000
spring.datasource.hikari.connection-timeout
=
60000
spring.datasource.hikari.connection-timeout
=
60000
spring.datasource.hikari.connection-test-query
=
SELECT 1
spring.datasource.hikari.connection-test-query
=
SELECT 1
##########eureka配置信息###############
# \u6587\u4EF6\u670D\u52A1\u5668\u5730\u5740
fileserver_domain
=
http://172.16.10.215:9000/
#eureka.instance.ip-address= 172.16.3.135
eureka.instance.hostname
=
172.16.10.215
eureka.instance.prefer-ip-address
=
true
eureka.instance.prefer-ip-address
=
true
eureka.client.serviceUrl.defaultZone
=
http://${spring.security.user.name}:${spring.security.user.password}@172.16.10.215:10001/eureka/
#服务实例ip地址,若eureka.instance.prefer-ip-address=false,ip-address设置失效,一般情况不用设置。
#eureka.instance.ip-address= 172.16.3.135
#eureka服务ip配置,可填写固定ip地址
eureka.instance.hostname
=
eureka
#eureka服务配置的校验账号及密码,配置需和eureka服务后台配置文件中一致
spring.security.user.name
=
admin
spring.security.user.name
=
admin
spring.security.user.password
=
a1234560
spring.security.user.password
=
a1234560
security.productApp
=
STUDIO_APP_MOBILE
eureka.client.serviceUrl.defaultZone
=
http://${spring.security.user.name}:${spring.security.user.password}@${eureka.instance.hostname}:10001/eureka/
##########eureka配置信息###############
amos.system.user.user-name
=
fas_system
amos.system.user.password
=
a1234560
amos.system.user.app-key
=
studio_normalapp_3056965
amos.system.user.product
=
STUDIO_APP_WEB
#redis
#redis
spring.redis.database
=
1
spring.redis.database
=
1
spring.redis.host
=
172.16.1
0.215
spring.redis.host
=
172.16.1
1.201
spring.redis.port
=
6379
spring.redis.port
=
6379
spring.redis.password
=
yeejoin@2020
spring.redis.password
=
yeejoin@2020
spring.redis.lettuce.pool.max-active
=
200
spring.redis.lettuce.pool.max-active
=
200
...
@@ -47,84 +39,114 @@ spring.redis.expire.time=30000
...
@@ -47,84 +39,114 @@ spring.redis.expire.time=30000
## emqx
## emqx
emqx.clean-session
=
true
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.1
0.215
:1883
emqx.broker
=
tcp://172.16.1
1.201
:1883
emqx.user-name
=
admin
emqx.user-name
=
admin
emqx.password
=
public
emqx.password
=
public
mqtt.scene.host
=
mqtt://172.16.1
0.215
:8083/mqtt
mqtt.scene.host
=
mqtt://172.16.1
1.201
:8083/mqtt
mqtt.client.product.id
=
mqtt
mqtt.client.product.id
=
mqtt
mqtt.topic
=
topic_mqtt
mqtt.topic
=
topic_mqtt
spring.mqtt.completionTimeout
=
3000
spring.mqtt.completionTimeout
=
3000
# influxDB
spring.influx.url
=
http://172.16.11.201:8086
spring.influx.password
=
Yeejoin@2020
spring.influx.user
=
root
spring.influx.database
=
iot_platform
spring.influx.retention_policy
=
default
spring.influx.retention_policy_time
=
30d
spring.influx.actions
=
10000
spring.influx.bufferLimit
=
20000
#系统机器人账号
amos.system.user.user-name
=
fas_system
amos.system.user.password
=
a1234560
amos.system.user.app-key
=
studio_normalapp_3056965
amos.system.user.product
=
STUDIO_APP_WEB
security.productApp
=
STUDIO_APP_MOBILE
#定时任务
##物联报表定时任务
jobs.month.cron
=
0 50 0 1 * ?
jobs.day.cron
=
0 5 0 * * ?
jobs.week.cron
=
0 25 0 ? * 1
jobs.day.cron.old
=
0 25 0 * * ?
#
数据同步开关
#
向数字站同步设备,巡查点台账信息开关,适用于数字站1.0版本,目前停止同步,默认为false
systemctl.sync.switch
=
false
systemctl.sync.switch
=
false
#数据JCS开关
#数据JCS开关 设备资源数据权限配置,站端部署,库里只有单站数据可不进行开启(false),中心级部署或存在多站数据时需开启(true)数据权限过滤
systemctl.jcs.switch
=
false
systemctl.jcs.switch
=
true
#平台数据开关
#给平台同步告警数据,若不同步影响消防自动化告警消息框数据展示
systemctl.amos.switch
=
false
systemctl.amos.switch
=
true
#告警数据是否发送给App端,发送是通过jpush实现,需要有网情况下。目前电力消防不支持网络使用,默认不进行APP推送
isSendApp
=
false
isSendApp
=
false
#报表数据地址
equip.report.url
=
/fire-fighting-system/ureport/preview?_u=file:
#数字化南瑞平台接口
dcs.url.token
=
http://198.87.103.158:8001/auth-service/oauth/token
dcs.url.sendalarm
=
http://198.87.103.158:8001/alarm-service/appalarm/sendalarm
#系统上线时间
###############向数字化平台3.0进行告警转发配置信息################################
#告警推送开关,若无推送需求进行关闭(false)
dcs.send.message
=
false
#请求头参数
dcs.client-id
=
fire_system
dcs.client.secret
=
fire_system
dcs.grant-type
=
client_credentials
dcs.scope
=
all
dcs.token-key
=
dcs_token_key
#华为roma秘钥每个站有区别与集成商索取
dcs.x.hw.id
=
io.cs
dcs.x.hw.appKey
=
i!YmnHgJ=Ysz8V+O@ZG237inQKfixkQ.-#-P3IlR8fO%.#F!g%35Z#@tp$6G+52v
# \u7531\u4E8E\u76EE\u524D\u6709\u4E0D\u6B62\u4E00\u4E2A\u6570\u5B57\u7AD9\u5E73\u53F0\u5BF9\u5E94\u63A5\u53E3\u89C4\u8303\u4E0D\u4E00\u81F4\uFF0C\u6240\u4EE5\u6B64\u5904\u589E\u52A0\u914D\u7F6E\uFF0Ctrue\u8868\u793A\u9002\u7528\u4E8E\u5357\u745E\u79D1\u6280\u7684\u63A5\u53E3\u89C4\u8303
#平台集成商是否科技接口,(科技为true、继保和许继为false)
dcs.NRKJ.use
=
false
dcs.source.type
=
\u
9ad8
\u
7ea7
\u
5e94
\u7528
#数字化平台3.0权限接口
dcs.url.token
=
http://172.21.101.123/udaap-ddis/v1/cs/auth-service/oauth/token
#数字化平台3.0告警存储接口
dcs.url.sendalarm
=
http://172.21.101.101/v1/cs/alarm-service/appalarm/sendalarm
#################################################################################
#??????
param.system.online.date
=
2019-02-12
param.system.online.date
=
2019-02-12
# 视频转码服务开关 hls(关)/flv(开),默认关闭,数字换流站使用时开启
############数字1.0视频接入服务配置,其他版本不支持##################################
# 视频转码服务开关 hls(关)/flv(开),默认关闭,数字换流站1.0使用时开启
window.vedioFormat
=
hls
window.vedioFormat
=
hls
window.vedioFormat.video
=
flv
# 航天视频服务地址
# 航天视频服务地址
param.htvideo.url
=
http://192.168.4.174:9001;
param.htvideo.url
=
http://192.168.4.174:9001;
# 南瑞视频转码服务地址
# 南瑞视频转码服务地址
param.nrvideo.url
=
http://198.87.103.158:8001;
param.nrvideo.url
=
http://198.87.103.158:8001;
#南瑞视频平台通过视频id获取flv格式视频播放地址
#南瑞视频平台通过视频id获取flv格式视频播放地址
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
#####################################################################################
# 预案消防炮、消防泵设备维度类型
equipment.plan.monitor
=
92030200,92032200
equipment.plan.pump
=
92010600,92030600,92130400,92140200,92150300
# 机场使用特殊配置iotCode前缀,装备、车辆及导入使用到
# 机场使用
#iot.code.prefix.have.used=20210003,20210004,20210005
# 电力使用
iot.code.prefix.have.used
=
#装备服务在接收到站端iot推送的装备数据后进行influxdb存库
#装备服务在接收到站端iot推送的装备数据后进行influxdb存库
#1.在装备接口消息处向influxdb/{productKey}/{deviceName} 消息地址推送数据,iot负责存库
#1.在装备接口消息处向influxdb/{productKey}/{deviceName} 消息地址推送数据,iot负责存库
#2.配置文件添加配置项开关,默认为关闭,该功能只使用于中心及系统
#2.配置文件添加配置项开关,默认为关闭,该功能只使用于中心及系统
#是否向iot推送消息
#是否向iot推送消息
isSendIot
=
false
isSendIot
=
false
#报废前30日 发起提醒
#站端编码及中文名称,用于数据上送
equipment.scrap.day
=
30
#提醒时间
equipment.scrap.cron
=
0 0 9 * * ?
# 稳压泵启动信号
equipment.pressurepump.start
=
FHS_PressurePump_Start
# 稳压泵管网压力信号
equipment.pressurepump.pipepressure
=
FHS_PipePressureDetector_PipePressure
# 站端标识
state.code
=
GW190301
state.code
=
GW190301
state.name
=
\u9526\u
5c4f
\u6362\u
6d41
\u
7ad9
state.name
=
\u9526\u
5c4f
\u6362\u
6d41
\u
7ad9
#站端编码,用于物联报表查询
stationCode
=
LSHLZ1bZAJU645Pgl7
#用于总部系统与站端系统逻辑区分,站端写zd总部默认为空
#用于总部系统与站端系统逻辑区分,站端写zd总部默认为空
system.type
=
zd
system.type
=
zd
#
是否开启遥测数据上报
#
遥测信号是否向直流中心推送,数字站默认不推送
is.open.telemetering
=
false
is.open.telemetering
=
false
# 水池液位相关信号
water.level.indexKey
=
FHS_FirePoolDevice_WaterLevel,FHS_LevelDetector_WaterLevel,FHS_WirelessliquidDetector_WaterLevel,CAFS_FoamTank_FoamTankLevel,CAFS_WaterTank_WaterTankLevel
\ No newline at end of file
# message 接收来自南瑞平台的告警事件描述,如:出现(即为true)
message.alarm.char
=
\u
51FA
\u
73B0
# 电建项目配置
mileage.parameter
=
0.5
# 电建项目配置
mileage.segmentation.cron
=
0 0 0 * * ?
# 机场使用特殊配置iotCode前缀,装备、车辆及导入使用到
# 机场使用
#iot.code.prefix.have.used=20210003,20210004,20210005
# 电力使用
iot.code.prefix.have.used
=
amos-boot-system-equip/src/main/resources/application-qa.properties
View file @
a2bace4f
spring.datasource.driver-class-name
=
com.mysql.cj.jdbc.Driver
spring.datasource.driver-class-name
=
com.mysql.cj.jdbc.Driver
spring.datasource.url
=
jdbc:mysql://172.16.1
0.215:3307/dl_business_v3.0.1.3
?useUnicode=true&allowMultiQueries=true&characterEncoding=utf-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai
spring.datasource.url
=
jdbc:mysql://172.16.1
1.201:3306/dl_business
?useUnicode=true&allowMultiQueries=true&characterEncoding=utf-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai
spring.datasource.username
=
root
spring.datasource.username
=
root
spring.datasource.password
=
Yeejoin@2020
spring.datasource.password
=
Yeejoin@2020
spring.datasource.type
=
com.zaxxer.hikari.HikariDataSource
spring.datasource.type
=
com.zaxxer.hikari.HikariDataSource
...
@@ -12,30 +12,22 @@ spring.datasource.hikari.max-lifetime= 1800000
...
@@ -12,30 +12,22 @@ spring.datasource.hikari.max-lifetime= 1800000
spring.datasource.hikari.connection-timeout
=
60000
spring.datasource.hikari.connection-timeout
=
60000
spring.datasource.hikari.connection-test-query
=
SELECT 1
spring.datasource.hikari.connection-test-query
=
SELECT 1
##########eureka配置信息###############
# \u6587\u4EF6\u670D\u52A1\u5668\u5730\u5740
fileserver_domain
=
http://172.16.10.215:9000/
#eureka.instance.ip-address= 172.16.3.135
eureka.instance.hostname
=
172.16.10.215
eureka.instance.prefer-ip-address
=
true
eureka.instance.prefer-ip-address
=
true
eureka.client.serviceUrl.defaultZone
=
http://${spring.security.user.name}:${spring.security.user.password}@172.16.10.215:10001/eureka/
#服务实例ip地址,若eureka.instance.prefer-ip-address=false,ip-address设置失效,一般情况不用设置。
#eureka.instance.ip-address= 172.16.3.135
#eureka服务ip配置,可填写固定ip地址
eureka.instance.hostname
=
eureka
#eureka服务配置的校验账号及密码,配置需和eureka服务后台配置文件中一致
spring.security.user.name
=
admin
spring.security.user.name
=
admin
spring.security.user.password
=
a1234560
spring.security.user.password
=
a1234560
security.productApp
=
STUDIO_APP_MOBILE
eureka.client.serviceUrl.defaultZone
=
http://${spring.security.user.name}:${spring.security.user.password}@${eureka.instance.hostname}:10001/eureka/
##########eureka配置信息###############
amos.system.user.user-name
=
fas_system
amos.system.user.password
=
a1234560
amos.system.user.app-key
=
studio_normalapp_3056965
amos.system.user.product
=
STUDIO_APP_WEB
#redis
#redis
spring.redis.database
=
1
spring.redis.database
=
1
spring.redis.host
=
172.16.1
0.215
spring.redis.host
=
172.16.1
1.201
spring.redis.port
=
6379
spring.redis.port
=
6379
spring.redis.password
=
yeejoin@2020
spring.redis.password
=
yeejoin@2020
spring.redis.lettuce.pool.max-active
=
200
spring.redis.lettuce.pool.max-active
=
200
...
@@ -47,84 +39,114 @@ spring.redis.expire.time=30000
...
@@ -47,84 +39,114 @@ spring.redis.expire.time=30000
## emqx
## emqx
emqx.clean-session
=
true
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.1
0.215
:1883
emqx.broker
=
tcp://172.16.1
1.201
:1883
emqx.user-name
=
admin
emqx.user-name
=
admin
emqx.password
=
public
emqx.password
=
public
mqtt.scene.host
=
mqtt://172.16.1
0.215
:8083/mqtt
mqtt.scene.host
=
mqtt://172.16.1
1.201
:8083/mqtt
mqtt.client.product.id
=
mqtt
mqtt.client.product.id
=
mqtt
mqtt.topic
=
topic_mqtt
mqtt.topic
=
topic_mqtt
spring.mqtt.completionTimeout
=
3000
spring.mqtt.completionTimeout
=
3000
# influxDB
spring.influx.url
=
http://172.16.11.201:8086
spring.influx.password
=
Yeejoin@2020
spring.influx.user
=
root
spring.influx.database
=
iot_platform
spring.influx.retention_policy
=
default
spring.influx.retention_policy_time
=
30d
spring.influx.actions
=
10000
spring.influx.bufferLimit
=
20000
#系统机器人账号
amos.system.user.user-name
=
fas_system
amos.system.user.password
=
a1234560
amos.system.user.app-key
=
studio_normalapp_3056965
amos.system.user.product
=
STUDIO_APP_WEB
security.productApp
=
STUDIO_APP_MOBILE
#定时任务
##物联报表定时任务
jobs.month.cron
=
0 50 0 1 * ?
jobs.day.cron
=
0 5 0 * * ?
jobs.week.cron
=
0 25 0 ? * 1
jobs.day.cron.old
=
0 25 0 * * ?
#
数据同步开关
#
向数字站同步设备,巡查点台账信息开关,适用于数字站1.0版本,目前停止同步,默认为false
systemctl.sync.switch
=
false
systemctl.sync.switch
=
false
#数据JCS开关
#数据JCS开关 设备资源数据权限配置,站端部署,库里只有单站数据可不进行开启(false),中心级部署或存在多站数据时需开启(true)数据权限过滤
systemctl.jcs.switch
=
false
systemctl.jcs.switch
=
true
#平台数据开关
#给平台同步告警数据,若不同步影响消防自动化告警消息框数据展示
systemctl.amos.switch
=
false
systemctl.amos.switch
=
true
#告警数据是否发送给App端,发送是通过jpush实现,需要有网情况下。目前电力消防不支持网络使用,默认不进行APP推送
isSendApp
=
false
isSendApp
=
false
#报表数据地址
equip.report.url
=
/fire-fighting-system/ureport/preview?_u=file:
#数字化南瑞平台接口
dcs.url.token
=
http://198.87.103.158:8001/auth-service/oauth/token
dcs.url.sendalarm
=
http://198.87.103.158:8001/alarm-service/appalarm/sendalarm
#系统上线时间
###############向数字化平台3.0进行告警转发配置信息################################
#告警推送开关,若无推送需求进行关闭(false)
dcs.send.message
=
false
#请求头参数
dcs.client-id
=
fire_system
dcs.client.secret
=
fire_system
dcs.grant-type
=
client_credentials
dcs.scope
=
all
dcs.token-key
=
dcs_token_key
#华为roma秘钥每个站有区别与集成商索取
dcs.x.hw.id
=
io.cs
dcs.x.hw.appKey
=
i!YmnHgJ=Ysz8V+O@ZG237inQKfixkQ.-#-P3IlR8fO%.#F!g%35Z#@tp$6G+52v
# \u7531\u4E8E\u76EE\u524D\u6709\u4E0D\u6B62\u4E00\u4E2A\u6570\u5B57\u7AD9\u5E73\u53F0\u5BF9\u5E94\u63A5\u53E3\u89C4\u8303\u4E0D\u4E00\u81F4\uFF0C\u6240\u4EE5\u6B64\u5904\u589E\u52A0\u914D\u7F6E\uFF0Ctrue\u8868\u793A\u9002\u7528\u4E8E\u5357\u745E\u79D1\u6280\u7684\u63A5\u53E3\u89C4\u8303
#平台集成商是否科技接口,(科技为true、继保和许继为false)
dcs.NRKJ.use
=
false
dcs.source.type
=
\u
9ad8
\u
7ea7
\u
5e94
\u7528
#数字化平台3.0权限接口
dcs.url.token
=
http://172.21.101.123/udaap-ddis/v1/cs/auth-service/oauth/token
#数字化平台3.0告警存储接口
dcs.url.sendalarm
=
http://172.21.101.101/v1/cs/alarm-service/appalarm/sendalarm
#################################################################################
#??????
param.system.online.date
=
2019-02-12
param.system.online.date
=
2019-02-12
# 视频转码服务开关 hls(关)/flv(开),默认关闭,数字换流站使用时开启
############数字1.0视频接入服务配置,其他版本不支持##################################
# 视频转码服务开关 hls(关)/flv(开),默认关闭,数字换流站1.0使用时开启
window.vedioFormat
=
hls
window.vedioFormat
=
hls
window.vedioFormat.video
=
flv
# 航天视频服务地址
# 航天视频服务地址
param.htvideo.url
=
http://192.168.4.174:9001;
param.htvideo.url
=
http://192.168.4.174:9001;
# 南瑞视频转码服务地址
# 南瑞视频转码服务地址
param.nrvideo.url
=
http://198.87.103.158:8001;
param.nrvideo.url
=
http://198.87.103.158:8001;
#南瑞视频平台通过视频id获取flv格式视频播放地址
#南瑞视频平台通过视频id获取flv格式视频播放地址
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
#####################################################################################
# 预案消防炮、消防泵设备维度类型
equipment.plan.monitor
=
92030200,92032200
equipment.plan.pump
=
92010600,92030600,92130400,92140200,92150300
# 机场使用特殊配置iotCode前缀,装备、车辆及导入使用到
# 机场使用
#iot.code.prefix.have.used=20210003,20210004,20210005
# 电力使用
iot.code.prefix.have.used
=
#装备服务在接收到站端iot推送的装备数据后进行influxdb存库
#装备服务在接收到站端iot推送的装备数据后进行influxdb存库
#1.在装备接口消息处向influxdb/{productKey}/{deviceName} 消息地址推送数据,iot负责存库
#1.在装备接口消息处向influxdb/{productKey}/{deviceName} 消息地址推送数据,iot负责存库
#2.配置文件添加配置项开关,默认为关闭,该功能只使用于中心及系统
#2.配置文件添加配置项开关,默认为关闭,该功能只使用于中心及系统
#是否向iot推送消息
#是否向iot推送消息
isSendIot
=
false
isSendIot
=
false
#报废前30日 发起提醒
#站端编码及中文名称,用于数据上送
equipment.scrap.day
=
30
#提醒时间
equipment.scrap.cron
=
0 0 9 * * ?
# 稳压泵启动信号
equipment.pressurepump.start
=
FHS_PressurePump_Start
# 稳压泵管网压力信号
equipment.pressurepump.pipepressure
=
FHS_PipePressureDetector_PipePressure
# 站端标识
state.code
=
GW190301
state.code
=
GW190301
state.name
=
\u9526\u
5c4f
\u6362\u
6d41
\u
7ad9
state.name
=
\u9526\u
5c4f
\u6362\u
6d41
\u
7ad9
#站端编码,用于物联报表查询
stationCode
=
LSHLZ1bZAJU645Pgl7
#用于总部系统与站端系统逻辑区分,站端写zd总部默认为空
#用于总部系统与站端系统逻辑区分,站端写zd总部默认为空
system.type
=
zd
system.type
=
zd
#
是否开启遥测数据上报
#
遥测信号是否向直流中心推送,数字站默认不推送
is.open.telemetering
=
false
is.open.telemetering
=
false
# 水池液位相关信号
water.level.indexKey
=
FHS_FirePoolDevice_WaterLevel,FHS_LevelDetector_WaterLevel,FHS_WirelessliquidDetector_WaterLevel,CAFS_FoamTank_FoamTankLevel,CAFS_WaterTank_WaterTankLevel
\ No newline at end of file
# message 接收来自南瑞平台的告警事件描述,如:出现(即为true)
message.alarm.char
=
\u
51FA
\u
73B0
# 电建项目配置
mileage.parameter
=
0.5
# 电建项目配置
mileage.segmentation.cron
=
0 0 0 * * ?
# 机场使用特殊配置iotCode前缀,装备、车辆及导入使用到
# 机场使用
#iot.code.prefix.have.used=20210003,20210004,20210005
# 电力使用
iot.code.prefix.have.used
=
amos-boot-system-equip/src/main/resources/application-test.properties
View file @
a2bace4f
spring.datasource.driver-class-name
=
com.mysql.cj.jdbc.Driver
spring.datasource.driver-class-name
=
com.mysql.cj.jdbc.Driver
spring.datasource.url
=
jdbc:mysql://172.16.1
0.215:3307/dl_business_v3.0.1.3
?useUnicode=true&allowMultiQueries=true&characterEncoding=utf-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai
spring.datasource.url
=
jdbc:mysql://172.16.1
1.201:3306/dl_business
?useUnicode=true&allowMultiQueries=true&characterEncoding=utf-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai
spring.datasource.username
=
root
spring.datasource.username
=
root
spring.datasource.password
=
Yeejoin@2020
spring.datasource.password
=
Yeejoin@2020
spring.datasource.type
=
com.zaxxer.hikari.HikariDataSource
spring.datasource.type
=
com.zaxxer.hikari.HikariDataSource
...
@@ -12,30 +12,22 @@ spring.datasource.hikari.max-lifetime= 1800000
...
@@ -12,30 +12,22 @@ spring.datasource.hikari.max-lifetime= 1800000
spring.datasource.hikari.connection-timeout
=
60000
spring.datasource.hikari.connection-timeout
=
60000
spring.datasource.hikari.connection-test-query
=
SELECT 1
spring.datasource.hikari.connection-test-query
=
SELECT 1
##########eureka配置信息###############
# \u6587\u4EF6\u670D\u52A1\u5668\u5730\u5740
fileserver_domain
=
http://172.16.10.215:9000/
#eureka.instance.ip-address= 172.16.3.135
eureka.instance.hostname
=
172.16.10.215
eureka.instance.prefer-ip-address
=
true
eureka.instance.prefer-ip-address
=
true
eureka.client.serviceUrl.defaultZone
=
http://${spring.security.user.name}:${spring.security.user.password}@172.16.10.215:10001/eureka/
#服务实例ip地址,若eureka.instance.prefer-ip-address=false,ip-address设置失效,一般情况不用设置。
#eureka.instance.ip-address= 172.16.3.135
#eureka服务ip配置,可填写固定ip地址
eureka.instance.hostname
=
eureka
#eureka服务配置的校验账号及密码,配置需和eureka服务后台配置文件中一致
spring.security.user.name
=
admin
spring.security.user.name
=
admin
spring.security.user.password
=
a1234560
spring.security.user.password
=
a1234560
security.productApp
=
STUDIO_APP_MOBILE
eureka.client.serviceUrl.defaultZone
=
http://${spring.security.user.name}:${spring.security.user.password}@${eureka.instance.hostname}:10001/eureka/
##########eureka配置信息###############
amos.system.user.user-name
=
fas_system
amos.system.user.password
=
a1234560
amos.system.user.app-key
=
studio_normalapp_3056965
amos.system.user.product
=
STUDIO_APP_WEB
#redis
#redis
spring.redis.database
=
1
spring.redis.database
=
1
spring.redis.host
=
172.16.1
0.215
spring.redis.host
=
172.16.1
1.201
spring.redis.port
=
6379
spring.redis.port
=
6379
spring.redis.password
=
yeejoin@2020
spring.redis.password
=
yeejoin@2020
spring.redis.lettuce.pool.max-active
=
200
spring.redis.lettuce.pool.max-active
=
200
...
@@ -47,84 +39,114 @@ spring.redis.expire.time=30000
...
@@ -47,84 +39,114 @@ spring.redis.expire.time=30000
## emqx
## emqx
emqx.clean-session
=
true
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.1
0.215
:1883
emqx.broker
=
tcp://172.16.1
1.201
:1883
emqx.user-name
=
admin
emqx.user-name
=
admin
emqx.password
=
public
emqx.password
=
public
mqtt.scene.host
=
mqtt://172.16.1
0.215
:8083/mqtt
mqtt.scene.host
=
mqtt://172.16.1
1.201
:8083/mqtt
mqtt.client.product.id
=
mqtt
mqtt.client.product.id
=
mqtt
mqtt.topic
=
topic_mqtt
mqtt.topic
=
topic_mqtt
spring.mqtt.completionTimeout
=
3000
spring.mqtt.completionTimeout
=
3000
# influxDB
spring.influx.url
=
http://172.16.11.201:8086
spring.influx.password
=
Yeejoin@2020
spring.influx.user
=
root
spring.influx.database
=
iot_platform
spring.influx.retention_policy
=
default
spring.influx.retention_policy_time
=
30d
spring.influx.actions
=
10000
spring.influx.bufferLimit
=
20000
#系统机器人账号
amos.system.user.user-name
=
fas_system
amos.system.user.password
=
a1234560
amos.system.user.app-key
=
studio_normalapp_3056965
amos.system.user.product
=
STUDIO_APP_WEB
security.productApp
=
STUDIO_APP_MOBILE
#定时任务
##物联报表定时任务
jobs.month.cron
=
0 50 0 1 * ?
jobs.day.cron
=
0 5 0 * * ?
jobs.week.cron
=
0 25 0 ? * 1
jobs.day.cron.old
=
0 25 0 * * ?
#
数据同步开关
#
向数字站同步设备,巡查点台账信息开关,适用于数字站1.0版本,目前停止同步,默认为false
systemctl.sync.switch
=
false
systemctl.sync.switch
=
false
#数据JCS开关
#数据JCS开关 设备资源数据权限配置,站端部署,库里只有单站数据可不进行开启(false),中心级部署或存在多站数据时需开启(true)数据权限过滤
systemctl.jcs.switch
=
false
systemctl.jcs.switch
=
true
#平台数据开关
#给平台同步告警数据,若不同步影响消防自动化告警消息框数据展示
systemctl.amos.switch
=
false
systemctl.amos.switch
=
true
#告警数据是否发送给App端,发送是通过jpush实现,需要有网情况下。目前电力消防不支持网络使用,默认不进行APP推送
isSendApp
=
false
isSendApp
=
false
#报表数据地址
equip.report.url
=
/fire-fighting-system/ureport/preview?_u=file:
#数字化南瑞平台接口
dcs.url.token
=
http://198.87.103.158:8001/auth-service/oauth/token
dcs.url.sendalarm
=
http://198.87.103.158:8001/alarm-service/appalarm/sendalarm
#系统上线时间
###############向数字化平台3.0进行告警转发配置信息################################
#告警推送开关,若无推送需求进行关闭(false)
dcs.send.message
=
false
#请求头参数
dcs.client-id
=
fire_system
dcs.client.secret
=
fire_system
dcs.grant-type
=
client_credentials
dcs.scope
=
all
dcs.token-key
=
dcs_token_key
#华为roma秘钥每个站有区别与集成商索取
dcs.x.hw.id
=
io.cs
dcs.x.hw.appKey
=
i!YmnHgJ=Ysz8V+O@ZG237inQKfixkQ.-#-P3IlR8fO%.#F!g%35Z#@tp$6G+52v
# \u7531\u4E8E\u76EE\u524D\u6709\u4E0D\u6B62\u4E00\u4E2A\u6570\u5B57\u7AD9\u5E73\u53F0\u5BF9\u5E94\u63A5\u53E3\u89C4\u8303\u4E0D\u4E00\u81F4\uFF0C\u6240\u4EE5\u6B64\u5904\u589E\u52A0\u914D\u7F6E\uFF0Ctrue\u8868\u793A\u9002\u7528\u4E8E\u5357\u745E\u79D1\u6280\u7684\u63A5\u53E3\u89C4\u8303
#平台集成商是否科技接口,(科技为true、继保和许继为false)
dcs.NRKJ.use
=
false
dcs.source.type
=
\u
9ad8
\u
7ea7
\u
5e94
\u7528
#数字化平台3.0权限接口
dcs.url.token
=
http://172.21.101.123/udaap-ddis/v1/cs/auth-service/oauth/token
#数字化平台3.0告警存储接口
dcs.url.sendalarm
=
http://172.21.101.101/v1/cs/alarm-service/appalarm/sendalarm
#################################################################################
#??????
param.system.online.date
=
2019-02-12
param.system.online.date
=
2019-02-12
# 视频转码服务开关 hls(关)/flv(开),默认关闭,数字换流站使用时开启
############数字1.0视频接入服务配置,其他版本不支持##################################
# 视频转码服务开关 hls(关)/flv(开),默认关闭,数字换流站1.0使用时开启
window.vedioFormat
=
hls
window.vedioFormat
=
hls
window.vedioFormat.video
=
flv
# 航天视频服务地址
# 航天视频服务地址
param.htvideo.url
=
http://192.168.4.174:9001;
param.htvideo.url
=
http://192.168.4.174:9001;
# 南瑞视频转码服务地址
# 南瑞视频转码服务地址
param.nrvideo.url
=
http://198.87.103.158:8001;
param.nrvideo.url
=
http://198.87.103.158:8001;
#南瑞视频平台通过视频id获取flv格式视频播放地址
#南瑞视频平台通过视频id获取flv格式视频播放地址
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
#####################################################################################
# 预案消防炮、消防泵设备维度类型
equipment.plan.monitor
=
92030200,92032200
equipment.plan.pump
=
92010600,92030600,92130400,92140200,92150300
# 机场使用特殊配置iotCode前缀,装备、车辆及导入使用到
# 机场使用
#iot.code.prefix.have.used=20210003,20210004,20210005
# 电力使用
iot.code.prefix.have.used
=
#装备服务在接收到站端iot推送的装备数据后进行influxdb存库
#装备服务在接收到站端iot推送的装备数据后进行influxdb存库
#1.在装备接口消息处向influxdb/{productKey}/{deviceName} 消息地址推送数据,iot负责存库
#1.在装备接口消息处向influxdb/{productKey}/{deviceName} 消息地址推送数据,iot负责存库
#2.配置文件添加配置项开关,默认为关闭,该功能只使用于中心及系统
#2.配置文件添加配置项开关,默认为关闭,该功能只使用于中心及系统
#是否向iot推送消息
#是否向iot推送消息
isSendIot
=
false
isSendIot
=
false
#报废前30日 发起提醒
#站端编码及中文名称,用于数据上送
equipment.scrap.day
=
30
#提醒时间
equipment.scrap.cron
=
0 0 9 * * ?
# 稳压泵启动信号
equipment.pressurepump.start
=
FHS_PressurePump_Start
# 稳压泵管网压力信号
equipment.pressurepump.pipepressure
=
FHS_PipePressureDetector_PipePressure
# 站端标识
state.code
=
GW190301
state.code
=
GW190301
state.name
=
\u9526\u
5c4f
\u6362\u
6d41
\u
7ad9
state.name
=
\u9526\u
5c4f
\u6362\u
6d41
\u
7ad9
#站端编码,用于物联报表查询
stationCode
=
LSHLZ1bZAJU645Pgl7
#用于总部系统与站端系统逻辑区分,站端写zd总部默认为空
#用于总部系统与站端系统逻辑区分,站端写zd总部默认为空
system.type
=
zd
system.type
=
zd
#
是否开启遥测数据上报
#
遥测信号是否向直流中心推送,数字站默认不推送
is.open.telemetering
=
false
is.open.telemetering
=
false
# 水池液位相关信号
water.level.indexKey
=
FHS_FirePoolDevice_WaterLevel,FHS_LevelDetector_WaterLevel,FHS_WirelessliquidDetector_WaterLevel,CAFS_FoamTank_FoamTankLevel,CAFS_WaterTank_WaterTankLevel
\ No newline at end of file
# message 接收来自南瑞平台的告警事件描述,如:出现(即为true)
message.alarm.char
=
\u
51FA
\u
73B0
# 电建项目配置
mileage.parameter
=
0.5
# 电建项目配置
mileage.segmentation.cron
=
0 0 0 * * ?
# 机场使用特殊配置iotCode前缀,装备、车辆及导入使用到
# 机场使用
#iot.code.prefix.have.used=20210003,20210004,20210005
# 电力使用
iot.code.prefix.have.used
=
amos-boot-system-equip/src/main/resources/application.properties
View file @
a2bace4f
...
@@ -140,9 +140,36 @@ fxkgtId=1522051112935387138
...
@@ -140,9 +140,36 @@ fxkgtId=1522051112935387138
management.security.enabled
=
true
management.security.enabled
=
true
management.endpoint.health.show-details
=
always
management.endpoint.health.show-details
=
always
spring.security.user.name
=
admin
spring.security.user.password
=
a1234560
#?????
stationCode
=
LSHLZ1bZAJU645Pgl7
##?????????????? ?????????? ???? ??true ?????? ?false ??????
##?????????????? ?????????? ???? ??true ?????? ?false ??????
logic
=
false
logic
=
false
\ No newline at end of file
##电力报表定时任务
jobs.month.cron
=
0 50 0 1 * ?
jobs.day.cron
=
0 5 0 * * ?
jobs.week.cron
=
0 25 0 ? * 1
jobs.day.cron.old
=
0 25 0 * * ?
#预案消防炮设备类型编码
equipment.plan.monitor
=
92030200,92032200
#消防泵设备类型编码
equipment.plan.pump
=
92010600,92030600,92130400,92140200,92150300
#电力设备报废业务,在设备报废前30日 每日9点执行 系统推送提醒。设备报废后停止消息推送提醒
equipment.scrap.day
=
30
equipment.scrap.cron
=
0 0 9 * * ?
#稳压泵定时向缓存中存昨日启动次数任务
equipment.pressurepump.start.cron
=
0 0 0 * * ?
#稳压泵启停指标
equipment.pressurepump.start
=
FHS_PressurePump_Start
#稳压泵压力指标
equipment.pressurepump.pipepressure
=
FHS_PipePressureDetector_PipePressure
#液位指标编码
water.level.indexKey
=
FHS_FirePoolDevice_WaterLevel,FHS_LevelDetector_WaterLevel,FHS_WirelessliquidDetector_WaterLevel,CAFS_FoamTank_FoamTankLevel,CAFS_WaterTank_WaterTankLevel
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment