refactor(system): 修改报警记录历史实体和更新应用配置
- 更新 AlarmRecordHistory 实体中 alarmRuleType 字段的字典配置- 修改应用服务器端口为8039 - 更新 PostgreSQL 数据库连接信息 - 修改文件上传和存储路径 - 更新创蓝短信秘钥和视频对接配置
正在显示
2 个修改的文件
包含
12 行增加
和
12 行删除
1 | server: | 1 | server: |
2 | port: 8095 | 2 | port: 8039 |
3 | servlet: | 3 | servlet: |
4 | context-path: /skboot | 4 | context-path: /skboot |
5 | compression: | 5 | compression: |
... | @@ -95,9 +95,9 @@ spring: | ... | @@ -95,9 +95,9 @@ spring: |
95 | driver-class-name: com.mysql.jdbc.Driver | 95 | driver-class-name: com.mysql.jdbc.Driver |
96 | # 多数据源配置 | 96 | # 多数据源配置 |
97 | pg-db: | 97 | pg-db: |
98 | url: jdbc:postgresql://47.104.99.86:10086/postgres?useUnicode=true&characterEncoding=UTF8 | 98 | url: jdbc:postgresql://139.129.230.214:10086/postgres?useUnicode=true&characterEncoding=UTF8 |
99 | username: postgres | 99 | username: postgres |
100 | password: JKjnf9713xt | 100 | password: Jkpostgres@zz |
101 | driver-class-name: org.postgresql.Driver | 101 | driver-class-name: org.postgresql.Driver |
102 | #redis 配置 | 102 | #redis 配置 |
103 | redis: | 103 | redis: |
... | @@ -130,14 +130,14 @@ mybatis-plus: | ... | @@ -130,14 +130,14 @@ mybatis-plus: |
130 | #log-impl: org.apache.ibatis.logging.stdout.StdOutImpl | 130 | #log-impl: org.apache.ibatis.logging.stdout.StdOutImpl |
131 | #数矿专用配置 | 131 | #数矿专用配置 |
132 | skua: | 132 | skua: |
133 | web-url: http://103.85.171.27:8096 | 133 | web-url: http://47.104.179.187:8040 |
134 | path: | 134 | path: |
135 | #文件上传根目录 设置 | 135 | #文件上传根目录 设置 |
136 | upload: /home/skboot/file | 136 | upload: /app/skboot/zhangfa2/file |
137 | #webapp文件路径 | 137 | #webapp文件路径 |
138 | webapp: /home/skboot/file | 138 | webapp: /app/skboot/zhangfa2/file |
139 | # 断点续传路径 | 139 | # 断点续传路径 |
140 | chunk: /home/skboot/file/files | 140 | chunk: /app/skboot/zhangfa2/file/files |
141 | #创蓝短信秘钥 | 141 | #创蓝短信秘钥 |
142 | sms: | 142 | sms: |
143 | #应用地址 | 143 | #应用地址 |
... | @@ -156,11 +156,11 @@ skua: | ... | @@ -156,11 +156,11 @@ skua: |
156 | isRunTimeInterval: 3600 | 156 | isRunTimeInterval: 3600 |
157 | #视频对接相关配置,未使用,待完善 | 157 | #视频对接相关配置,未使用,待完善 |
158 | video: | 158 | video: |
159 | lan: 113.249.91.27 | 159 | lan: 118.190.97.62 |
160 | ip: 113.249.91.27 | 160 | ip: 118.190.97.62 |
161 | port: 8667 | 161 | port: 8667 |
162 | appkey: 21656155 | 162 | appkey: 23259573 |
163 | secretkey: llQvkzDIzmYnNiXNYxDN | 163 | secretkey: 0zoBqIJeudIhgCysCe0r |
164 | #消息推送 | 164 | #消息推送 |
165 | push: | 165 | push: |
166 | #是否开启流程消息推送 | 166 | #是否开启流程消息推送 | ... | ... |
... | @@ -69,7 +69,7 @@ public class AlarmRecordHistory extends FlowEntity implements Serializable { | ... | @@ -69,7 +69,7 @@ public class AlarmRecordHistory extends FlowEntity implements Serializable { |
69 | */ | 69 | */ |
70 | @Excel(name = "报警类型(1:实时报警,2:日均值报警)", width = 15) | 70 | @Excel(name = "报警类型(1:实时报警,2:日均值报警)", width = 15) |
71 | @ApiModelProperty(value = "报警类型(1:实时报警,2:日均值报警)") | 71 | @ApiModelProperty(value = "报警类型(1:实时报警,2:日均值报警)") |
72 | @Dict(dicCode = "alarm_type") | 72 | @Dict(dictTable = "alarm_rule_config_public_tab", dicCode="id", dicText = "tab_name") |
73 | private String alarmRuleType; | 73 | private String alarmRuleType; |
74 | 74 | ||
75 | /** | 75 | /** | ... | ... |
-
请 注册 或 登录 后发表评论