application.yml 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480
  1. #通用的配置不用区分环境变量
  2. server:
  3. port: 10024
  4. spring:
  5. aop:
  6. proxy-target-class: true
  7. datasource:
  8. driver-class-name: com.mysql.cj.jdbc.Driver
  9. max-active: 200
  10. max-idle: 200 #最大空闲连接
  11. min-idle: 10 #最小空闲连接
  12. validation-query-timeout: 20
  13. log-validation-errors: true
  14. validation-interval: 60000 #避免过度验证,保证验证不超过这个频率——以毫秒为单位。如果一个连接应该被验证,但上次验证未达到指定间隔,将不再次验证。
  15. validation-query: SELECT 1 #SQL 查询, 用来验证从连接池取出的连接, 在将连接返回给调用者之前。 如果指定, 则查询必须是一个SQL SELECT 并且必须返回至少一行记录
  16. test-on-borrow: true #指明是否在从池中取出连接前进行检验, 如果检验失败, 则从池中去除连接并尝试取出另一个。注意: 设置为true 后如果要生效,validationQuery 参数必须设置为非空字符串
  17. test-on-return: true #指明是否在归还到池中前进行检验 注意: 设置为true 后如果要生效validationQuery 参数必须设置为非空字符串
  18. idle-timeout: 20000
  19. connection-test-query: SELECT 1
  20. num-tests-per-eviction-run: 200 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和maxActive
  21. test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
  22. min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
  23. time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
  24. main:
  25. allow-bean-definition-overriding: true
  26. # location: D:/work/soft_dev/IdeaWorkSpace/wlyy2.0/svr/svr-patient/temp_file/
  27. # resolve-lazily: true
  28. redis:
  29. database: 0 # Database index used by the connection factory.
  30. password: # Login password of the redis server.
  31. timeout: 120000 # 连接超时时间(毫秒) 60秒
  32. pool:
  33. max-active: 20 # 连接池最大连接数(使用负值表示没有限制)
  34. max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
  35. max-idle: 20 # 连接池中的最大空闲连接
  36. min-idle: 5 # 连接池中的最小空闲连接
  37. mail:
  38. default-encoding: UTF-8
  39. #端口
  40. port: 25
  41. #协议
  42. protocol: smtp
  43. properties.mail.smtp.auth: true
  44. properties.mail.smtp.starttls.enable: true
  45. properties.mail.smtp.starttls.required: true
  46. host: smtp.163.com
  47. #发送者的邮箱密码
  48. password: xmijk181016jkzl
  49. #发送者的邮箱账号
  50. username: i_jiankang@163.com
  51. es:
  52. index:
  53. servicePackLog: base_service_package_log
  54. type:
  55. servicePackLog: base_service_package_log
  56. fast-dfs:
  57. connect-timeout: 2 #链接超时时间
  58. network-timeout: 30
  59. charset: ISO8859-1 #编码
  60. http:
  61. tracker-http-port: 80
  62. anti-steal-token: no
  63. secret-key: FastDFS1234567890
  64. pool: #连接池大小
  65. init-size: 5
  66. max-size: 20
  67. wait-time: 500
  68. configDefault: # 默认配置
  69. saasId: xmjkzl_saasId
  70. ##拦截器开关
  71. interceptor:
  72. accesstoken:
  73. status: 1 ### 1开启 0 关闭
  74. time: 2 ##对外接的accesstoken生命周期 2小时
  75. ---
  76. spring:
  77. profiles: jwdev
  78. datasource:
  79. driver-class-name: com.mysql.cj.jdbc.Driver
  80. url: jdbc:mysql://172.26.0.104/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  81. username: ssgg
  82. password: ssgg@jkzl2019
  83. # elasticsearch:
  84. # cluster-name: jkzl #集群名 默认elasticsearch
  85. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  86. # client-transport-sniff: false
  87. # jest:
  88. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  89. # connection-timeout: 60000 # Connection timeout in milliseconds.
  90. # multi-threaded: true # Enable connection requests from multiple execution threads.
  91. activemq:
  92. broker-url: tcp://172.26.0.116:61616
  93. user: admin
  94. password: admin
  95. redis:
  96. host: 172.26.0.253 # Redis server host.
  97. port: 6379 # Redis server port.
  98. # password: jkzl_ehr
  99. # zipkin:
  100. # base-url: http://localhost:9411 #日志追踪的地址
  101. fastDFS:
  102. fastdfs_file_url: http://172.26.0.110:8888/
  103. fast-dfs:
  104. tracker-server: 172.26.0.110:22122 #服务器地址
  105. # 短信发送地址
  106. jw:
  107. smsUrl: http://svr-base:10020/sms_gateway/send
  108. myFamily:
  109. qrCodeFailurTime: 2
  110. wechat:
  111. id: xm_zsyy_wx # base库中,wx_wechat 的id字段
  112. flag: false #演示环境 true走Mysql数据库 false走Oracle
  113. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  114. # 短信验证码发送的客户端标识,居民端
  115. sms:
  116. clientId: EwC0iRSrcP
  117. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  118. demo:
  119. flag: true
  120. #支付支付
  121. pay:
  122. flag: true
  123. hospital:
  124. url: https://wx.xmzsh.com
  125. mqUser: JKZL
  126. mqPwd: 123456
  127. SourceSysCode: S60
  128. TargetSysCode: S01
  129. im:
  130. im_list_get: http://172.26.0.105:3000/
  131. data_base_name: im_internet_hospital
  132. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  133. testPattern:
  134. sign: 0
  135. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  136. wlyy:
  137. url: http://ehr.yihu.com/wlyy/
  138. es:
  139. pwflag: 1 # 1需要密码,2不需要密码
  140. index:
  141. Statistics: hlw_quota_test
  142. type:
  143. Statistics: hlw_quota_test
  144. host: http://172.26.0.112:9200
  145. tHost: 172.26.0.112:9300
  146. clusterName: jkzl
  147. securityUser: elastic:elastic
  148. user: lion
  149. password: jkzlehr
  150. # 上传文件临时路径配置
  151. FileTempPath:
  152. upload_temp_path : /var/local/temp
  153. image_path : /var/local/upload/images
  154. voice_path : /var/local/upload/voice
  155. chat_file_path : /var/local/upload/chat
  156. qywx:
  157. url: 2
  158. id: 2
  159. express:
  160. sf_url: https://mrds-admin.sf-express.com:443
  161. sf_code: JKZL
  162. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  163. ---
  164. spring:
  165. profiles: jwtest
  166. datasource:
  167. driver-class-name: com.mysql.cj.jdbc.Driver
  168. url: jdbc:mysql://172.26.0.104/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  169. username: ssgg
  170. password: ssgg@jkzl2019
  171. # elasticsearch:
  172. # cluster-name: jkzl #集群名 默认elasticsearch
  173. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  174. # client-transport-sniff: false
  175. # jest:
  176. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  177. # connection-timeout: 60000 # Connection timeout in milliseconds.
  178. # multi-threaded: true # Enable connection requests from multiple execution threads.
  179. activemq:
  180. broker-url: tcp://172.26.0.116:61616
  181. user: admin
  182. password: admin
  183. redis:
  184. host: 172.26.0.253 # Redis server host.
  185. port: 6379 # Redis server port.
  186. fastDFS:
  187. fastdfs_file_url: http://172.26.0.110:8888/
  188. fast-dfs:
  189. tracker-server: 172.26.0.110:22122 #服务器地址
  190. wechat:
  191. id: xm_mlwyy_wx # base库中,wx_wechat 的id字段
  192. flag: false #演示环境 true走Mysql数据库 false走Oracle
  193. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  194. # 短信验证码发送的客户端标识,居民端
  195. sms:
  196. clientId: EwC0iRSrcP
  197. myFamily:
  198. qrCodeFailurTime: 2
  199. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  200. demo:
  201. flag: true
  202. #支付支付
  203. pay:
  204. flag: true
  205. hospital:
  206. url: https://wx.xmzsh.com
  207. mqUser: JKZL
  208. mqPwd: 123456
  209. SourceSysCode: S60
  210. TargetSysCode: S01
  211. im:
  212. im_list_get: http://172.26.0.105:3000/
  213. data_base_name: im_internet_hospital
  214. es:
  215. pwflag: 1 # 1需要密码,2不需要密码
  216. index:
  217. Statistics: hlw_quota_test
  218. type:
  219. Statistics: hlw_quota_test
  220. host: http://172.26.0.55:9000
  221. tHost: 172.26.0.55:9300
  222. clusterName: jkzl
  223. securityUser: lion:jkzlehr
  224. user: lion
  225. password: jkzlehr
  226. # 上传文件临时路径配置
  227. FileTempPath:
  228. upload_temp_path : /var/local/temp
  229. image_path : /var/local/upload/images
  230. voice_path : /var/local/upload/voice
  231. chat_file_path : /var/local/upload/chat
  232. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  233. testPattern:
  234. sign: 0
  235. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  236. wlyy:
  237. url: http://ehr.yihu.com/wlyy/
  238. qywx:
  239. url: 2
  240. id: 1
  241. express:
  242. sf_url: http://mrds-admin-ci.sit.sf-express.com:45478
  243. sf_code: HD000001
  244. sf_check_word: AAAABBBBCCCCDDDD
  245. ---
  246. spring:
  247. profiles: jwprod
  248. datasource:
  249. driver-class-name: com.mysql.cj.jdbc.Driver
  250. url: jdbc:mysql://172.16.1.42:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  251. username: im
  252. password: 2oEq3Kf7
  253. activemq:
  254. broker-url: tcp://59.61.92.90:9103
  255. user: jkzl
  256. password: jkzlehr
  257. redis:
  258. host: 192.0.33.26 # Redis server host.
  259. port: 6390 # Redis server port.
  260. password: Kb6wKDQP1W4
  261. fastDFS:
  262. fastdfs_file_url: https://hlwyy.xmzsh.com/fastdfs/
  263. fast-dfs:
  264. tracker-server: 192.0.33.26:22122 #服务器地址
  265. wechat:
  266. id: xm_zsyy_wx # base库中,wx_wechat 的id字段 # todo 待配置
  267. flag: false #演示环境 true走Mysql数据库 false走Oracle
  268. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage # 短信验证码发送的客户端标识,居民端
  269. sms:
  270. clientId: EwC0iRSrcP #todo 待配置
  271. myFamily:
  272. qrCodeFailurTime: 2 # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  273. demo:
  274. flag: true #支付支付
  275. pay:
  276. flag: true
  277. hospital:
  278. url: https://wx.xmzsh.com
  279. mqUser: JKZL
  280. mqPwd: 123456
  281. SourceSysCode: S60
  282. TargetSysCode: S01
  283. im:
  284. im_list_get: http://172.16.1.42:3000/
  285. data_base_name: im
  286. es:
  287. pwflag: 1 # 1需要密码,2不需要密码
  288. index:
  289. Statistics: hlw_quota_prod
  290. type:
  291. Statistics: hlw_quota_prod
  292. host: http://192.0.33.26:9200
  293. tHost: 192.0.33.26:9300
  294. clusterName: jkzl
  295. user: lion
  296. password: jkzlehr
  297. FileTempPath: # 上传文件临时路径配置
  298. upload_temp_path : /var/local/temp
  299. image_path : /var/local/upload/images
  300. voice_path : /var/local/upload/voice
  301. chat_file_path : /var/local/upload/chat
  302. testPattern: #文件服务器上传配置 0本地,1.I健康,2.内网调用
  303. sign: 0
  304. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  305. wlyy:
  306. url: http://www.xmtyw.cn/wlyytest/
  307. qywx:
  308. url: https://hlwyy.xmzsh.com/hlwyy
  309. id: zsyy
  310. express:
  311. sf_url: https://mrds-admin.sf-express.com:443
  312. sf_code: WH000102
  313. sf_check_word: TGUQASFNAZyjt9112
  314. ---
  315. spring:
  316. profiles: jwOracleTest
  317. datasource:
  318. driver-class-name: oracle.jdbc.driver.OracleDriver
  319. url: jdbc:oracle:thin:@172.26.0.141:1521:helowin
  320. username: normal
  321. password: normal
  322. jpa:
  323. properties:
  324. hibernate:
  325. dialect: org.hibernate.dialect.Oracle10gDialect
  326. show_sql: true
  327. database: oracle
  328. # url: jdbc:mysql://172.19.103.77/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  329. # username: root
  330. # password: 123456
  331. # elasticsearch:
  332. # cluster-name: jkzl #集群名 默认elasticsearch
  333. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  334. # client-transport-sniff: false
  335. # jest:
  336. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  337. # connection-timeout: 60000 # Connection timeout in milliseconds.
  338. # multi-threaded: true # Enable connection requests from multiple execution threads.
  339. activemq:
  340. broker-url: tcp://172.26.0.116:61616
  341. user: admin
  342. password: admin
  343. redis:
  344. host: 172.26.0.253 # Redis server host.
  345. port: 6379 # Redis server port.
  346. fastDFS:
  347. fastdfs_file_url: http://172.26.0.110:8888/
  348. fast-dfs:
  349. tracker-server: 172.26.0.110:22122 #服务器地址
  350. wechat:
  351. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  352. flag: false #演示环境 true走Mysql数据库 false走Oracle
  353. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  354. # 短信验证码发送的客户端标识,居民端
  355. sms:
  356. clientId: EwC0iRSrcP
  357. myFamily:
  358. qrCodeFailurTime: 2
  359. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  360. demo:
  361. flag: true
  362. #支付支付
  363. pay:
  364. flag: true
  365. hospital:
  366. url: https://wx.xmzsh.com
  367. mqUser: JKZL
  368. mqPwd: 123456
  369. SourceSysCode: S60
  370. TargetSysCode: S01
  371. im:
  372. im_list_get: http://172.26.0.105:3000/
  373. data_base_name: im_internet_hospital
  374. # 上传文件临时路径配置
  375. FileTempPath:
  376. upload_temp_path : /var/local/temp
  377. image_path : /var/local/upload/images
  378. voice_path : /var/local/upload/voice
  379. chat_file_path : /var/local/upload/chat
  380. es:
  381. pwflag: 1 # 1需要密码,2不需要密码
  382. index:
  383. Statistics: hlw_quota_test
  384. type:
  385. Statistics: hlw_quota_test
  386. host: http://172.26.0.55:9200
  387. tHost: 172.26.0.55:9300
  388. clusterName: jkzl
  389. securityUser: elastic:changeme
  390. user: lion
  391. password: jkzlehr
  392. #文件服务器上传配置 1本地,3.I健康,2.内网调用
  393. testPattern:
  394. sign: 0
  395. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  396. wlyy:
  397. url: http://ehr.yihu.com/wlyy/
  398. qywx:
  399. url: 2
  400. id: 1
  401. express:
  402. sf_url: https://mrds-admin.sf-express.com:443
  403. sf_code: WH000091
  404. sf_check_word: SFAHKAOFAAITyjt7890
  405. ---
  406. spring:
  407. profiles: jwOracleProd
  408. datasource:
  409. driver-class-name: oracle.jdbc.driver.OracleDriver
  410. url: jdbc:oracle:thin:@10.10.10.16:1521/rac
  411. username: HLWYY
  412. password: Xmykzxhlwyy963
  413. jpa:
  414. properties:
  415. hibernate:
  416. dialect: org.hibernate.dialect.Oracle10gDialect
  417. show_sql: true
  418. database: oracle
  419. # elasticsearch:
  420. # cluster-name: jkzl #集群名 默认elasticsearch
  421. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  422. # client-transport-sniff: false
  423. # jest:
  424. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  425. # connection-timeout: 60000 # Connection timeout in milliseconds.
  426. # multi-threaded: true # Enable connection requests from multiple execution threads.
  427. activemq:
  428. broker-url: tcp://172.26.0.116:61616
  429. user: admin
  430. password: admin
  431. redis:
  432. host: 192.168.33.198 # Redis server host.
  433. port: 6380 # Redis server port.
  434. fastDFS:
  435. fastdfs_file_url: http://192.168.33.198:8888/
  436. fast-dfs:
  437. tracker-server: 192.168.33.198:22122 #服务器地址
  438. wechat:
  439. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  440. flag: false #演示环境 true走Mysql数据库 false走Oracle
  441. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  442. # 短信验证码发送的客户端标识,居民端
  443. sms:
  444. clientId: EwC0iRSrcP
  445. myFamily:
  446. qrCodeFailurTime: 2
  447. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  448. demo:
  449. flag: true
  450. #支付支付
  451. pay:
  452. flag: true
  453. hospital:
  454. url: https://wx.xmzsh.com
  455. mqUser: JKZL
  456. mqPwd: 123456
  457. SourceSysCode: S60
  458. TargetSysCode: S01
  459. im:
  460. im_list_get: http://172.26.0.105:3000/
  461. data_base_name: im_internet_hospital
  462. # 上传文件临时路径配置
  463. FileTempPath:
  464. upload_temp_path : /var/local/temp
  465. image_path : /var/local/upload/images
  466. voice_path : /var/local/upload/voice
  467. chat_file_path : /var/local/upload/chat
  468. es:
  469. pwflag: 1 # 1需要密码,2不需要密码
  470. index:
  471. Statistics: hlw_quota_prod
  472. type:
  473. Statistics: hlw_quota_prod
  474. host: http://192.168.33.198:9200
  475. tHost: 192.168.33.198:9300
  476. clusterName: jkzl
  477. securityUser: lion:jkzlehr
  478. user: lion
  479. password: jkzlehr
  480. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  481. testPattern:
  482. sign: 0
  483. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  484. wlyy:
  485. url: http://ehr.yihu.com/wlyy/
  486. qywx:
  487. url: 2
  488. id: 1
  489. express:
  490. sf_url: https://mrds-admin.sf-express.com:443
  491. sf_code: WH000091
  492. sf_check_word: SFAHKAOFAAITyjt7890
  493. ---
  494. ##==心脏中心 ===============================================================================
  495. spring:
  496. profiles: xzprod_in
  497. datasource:
  498. driver-class-name: com.mysql.cj.jdbc.Driver
  499. url: jdbc:mysql://192.168.103.155:7306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  500. username: jkzl
  501. password: jkzl@2020
  502. elasticsearch:
  503. cluster-name: jkzl #集群名 默认elasticsearch
  504. cluster-nodes: 192.168.103.153:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  505. client-transport-sniff: false
  506. jest:
  507. uris: http://192.168.103.153:9300
  508. connection-timeout: 60000 # Connection timeout in milliseconds.
  509. multi-threaded: true # Enable connection requests from multiple execution threads.
  510. activemq:
  511. broker-url: tcp://59.61.92.90:9103
  512. user: jkzl
  513. password: jkzlehr
  514. redis:
  515. host: 192.168.103.158 # Redis server host.
  516. port: 6380 # Redis server port.
  517. password: q4YaQemf
  518. fastDFS:
  519. fastdfs_file_url: http://192.168.103.159:8888/
  520. fast-dfs:
  521. tracker-server: 192.168.103.159:22122 #服务器地址
  522. wechat:
  523. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  524. flag: false #演示环境 true走Mysql数据库 false走Oracle
  525. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  526. # 短信验证码发送的客户端标识,居民端
  527. sms:
  528. clientId: EwC0iRSrcP #todo 待配置
  529. myFamily:
  530. qrCodeFailurTime: 2
  531. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  532. demo:
  533. flag: false
  534. #支付支付
  535. pay:
  536. flag: true
  537. hospital:
  538. url: https://wx.xmzsh.com
  539. mqUser: JKZL
  540. mqPwd: 123456
  541. SourceSysCode: S60
  542. TargetSysCode: S01
  543. im:
  544. im_list_get: http://192.168.118.240:3000/
  545. data_base_name: im
  546. # 上传文件临时路径配置
  547. FileTempPath:
  548. upload_temp_path : /var/local/temp
  549. image_path : /var/local/upload/images
  550. voice_path : /var/local/upload/voice
  551. chat_file_path : /var/local/upload/chat
  552. es:
  553. pwflag: 1 # 1需要密码,2不需要密码
  554. index:
  555. Statistics: hlw_quota_test
  556. type:
  557. Statistics: hlw_quota_test
  558. host: http://192.168.103.153:9200
  559. tHost: 192.168.103.153:9300
  560. clusterName: jkzl
  561. securityUser: lion:jkzlehr
  562. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  563. testPattern:
  564. sign: 0
  565. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  566. wlyy:
  567. url: http://ehr.yihu.com/wlyy/
  568. qywx:
  569. url: https://ih.xmheart.com/hlwyy/
  570. id: xm_xzzx_wx
  571. express:
  572. sf_url: https://mrds-admin.sf-express.com:443
  573. sf_code: WH000101
  574. sf_check_word: EDSAFWFAQWyjt8099
  575. ---
  576. ##==心脏中心外 ===============================================================================
  577. spring:
  578. profiles: xzprod
  579. datasource:
  580. driver-class-name: com.mysql.cj.jdbc.Driver
  581. url: jdbc:mysql://172.16.100.240:7306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  582. username: jkzl
  583. password: jkzl@2020
  584. elasticsearch:
  585. cluster-name: jkzl #集群名 默认elasticsearch
  586. cluster-nodes: 172.16.100.240:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  587. client-transport-sniff: false
  588. jest:
  589. uris: http://172.16.100.240:9300
  590. connection-timeout: 60000 # Connection timeout in milliseconds.
  591. multi-threaded: true # Enable connection requests from multiple execution threads.
  592. activemq:
  593. broker-url: tcp://59.61.92.90:9103
  594. user: jkzl
  595. password: jkzlehr
  596. redis:
  597. host: 172.16.100.240 # Redis server host.
  598. port: 6380 # Redis server port.
  599. password: q4YaQemf
  600. fastDFS:
  601. fastdfs_file_url: http://172.16.100.240:8888/
  602. fast-dfs:
  603. tracker-server: 172.16.100.240:22122 #服务器地址
  604. wechat:
  605. id: xm_xzzx_wx # base库中,wx_wechat 的id字段 # todo 待配置
  606. flag: false #演示环境 true走Mysql数据库 false走Oracle
  607. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  608. # 短信验证码发送的客户端标识,居民端
  609. sms:
  610. clientId: EwC0iRSrcP #todo 待配置
  611. myFamily:
  612. qrCodeFailurTime: 2
  613. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  614. demo:
  615. flag: false
  616. #支付支付
  617. pay:
  618. flag: true
  619. hospital:
  620. url: https://wx.xmzsh.com
  621. mqUser: JKZL
  622. mqPwd: 123456
  623. SourceSysCode: S60
  624. TargetSysCode: S01
  625. im:
  626. im_list_get: http://172.16.100.65:3000/
  627. data_base_name: im
  628. # 上传文件临时路径配置
  629. FileTempPath:
  630. upload_temp_path : /var/local/temp
  631. image_path : /var/local/upload/images
  632. voice_path : /var/local/upload/voice
  633. chat_file_path : /var/local/upload/chat
  634. es:
  635. pwflag: 1 # 1需要密码,2不需要密码
  636. index:
  637. Statistics: hlw_quota_prod
  638. type:
  639. Statistics: hlw_quota_prod
  640. host: http://172.16.100.240:9200
  641. tHost: 172.16.100.240:9300
  642. clusterName: jkzl
  643. securityUser: lion:jkzlehr
  644. user: lion
  645. password: jkzlehr
  646. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  647. testPattern:
  648. sign: 2
  649. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  650. wlyy:
  651. url: http://ehr.yihu.com/wlyy/
  652. qywx:
  653. url: https://ih.xmheart.com/hlwyy/
  654. id: xm_xzzx_wx
  655. express:
  656. sf_url: https://mrds-admin.sf-express.com:443
  657. sf_code: WH000101
  658. sf_check_word: EDSAFWFAQWyjt8099
  659. ---
  660. ##==厦门卫计委 ===============================================================================
  661. spring:
  662. profiles: xmjwprod
  663. datasource:
  664. driver-class-name: com.mysql.cj.jdbc.Driver
  665. url: jdbc:mysql://59.61.92.90:9409/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  666. username: wlyy
  667. password: qY#j2n5O
  668. elasticsearch:
  669. cluster-name: jkzl #集群名 默认elasticsearch
  670. cluster-nodes: 10.95.22.155:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  671. client-transport-sniff: false
  672. jest:
  673. uris: http://10.95.22.155:9300
  674. connection-timeout: 60000 # Connection timeout in milliseconds.
  675. multi-threaded: true # Enable connection requests from multiple execution threads.
  676. activemq:
  677. broker-url: tcp://59.61.92.90:9103
  678. user: jkzl
  679. password: jkzlehr
  680. redis:
  681. host: 59.61.92.90 # Redis server host.
  682. port: 9054 # Redis server port.
  683. password: jkzlehr
  684. fastDFS:
  685. fastdfs_file_url: http://192.168.103.159:8888/
  686. fast-dfs:
  687. tracker-server: 192.168.103.159:22122 #服务器地址
  688. wechat:
  689. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  690. flag: false #演示环境 true走Mysql数据库 false走Oracle
  691. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  692. # 短信验证码发送的客户端标识,居民端
  693. sms:
  694. clientId: EwC0iRSrcP #todo 待配置
  695. myFamily:
  696. qrCodeFailurTime: 2
  697. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  698. demo:
  699. flag: false
  700. #支付支付
  701. pay:
  702. flag: true
  703. hospital:
  704. url: https://wx.xmzsh.com
  705. mqUser: JKZL
  706. mqPwd: 123456
  707. SourceSysCode: S60
  708. TargetSysCode: S01
  709. im:
  710. im_list_get: http://172.16.1.42:3000/
  711. data_base_name: im
  712. # 上传文件临时路径配置
  713. FileTempPath:
  714. upload_temp_path : /var/local/temp
  715. image_path : /var/local/upload/images
  716. voice_path : /var/local/upload/voice
  717. chat_file_path : /var/local/upload/chat
  718. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  719. testPattern:
  720. sign: 1
  721. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  722. wlyy:
  723. url: http://www.xmtyw.cn/wlyytest/
  724. es:
  725. pwflag: 0 # 1需要密码,0不需要密码
  726. index:
  727. Statistics: hlw_quota_prod
  728. type:
  729. Statistics: hlw_quota_prod
  730. host: http://172.16.100.240:9200
  731. tHost: 172.16.100.240:9300
  732. clusterName: jkzl
  733. securityUser: lion:jkzlehr
  734. user: lion
  735. password: jkzlehr
  736. qywx:
  737. url: 1
  738. id: 2
  739. express:
  740. sf_url: https://mrds-admin.sf-express.com:443
  741. sf_code:
  742. sf_check_word:
  743. ---
  744. spring:
  745. profiles: jwystest
  746. datasource:
  747. driver-class-name: com.mysql.cj.jdbc.Driver
  748. url: jdbc:mysql://172.26.0.195/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  749. username: root
  750. password: jkzlehr
  751. # elasticsearch:
  752. # cluster-name: jkzl #集群名 默认elasticsearch
  753. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  754. # client-transport-sniff: false
  755. # jest:
  756. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  757. # connection-timeout: 60000 # Connection timeout in milliseconds.
  758. # multi-threaded: true # Enable connection requests from multiple execution threads.
  759. activemq:
  760. broker-url: tcp://172.26.0.116:61616
  761. user: admin
  762. password: admin
  763. redis:
  764. # host: 172.26.0.253 # Redis server host.
  765. host: 172.26.0.190 # Redis server host
  766. port: 6379 # Redis server port
  767. fastDFS:
  768. fastdfs_file_url: http://172.26.0.110:8888/
  769. fast-dfs:
  770. tracker-server: 172.26.0.110:22122 #服务器地址
  771. wechat:
  772. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  773. flag: true #演示环境 true走Mysql数据库 false走Oracle
  774. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  775. # 短信验证码发送的客户端标识,居民端
  776. sms:
  777. clientId: EwC0iRSrcP
  778. myFamily:
  779. qrCodeFailurTime: 2
  780. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  781. demo:
  782. flag: true
  783. #支付支付
  784. pay:
  785. flag: true
  786. hospital:
  787. url: https://wx.xmzsh.com
  788. mqUser: JKZL
  789. mqPwd: 123456
  790. SourceSysCode: S60
  791. TargetSysCode: S01
  792. im:
  793. im_list_get: http://172.26.0.193:3000/
  794. data_base_name: im_internet_hospital
  795. es:
  796. pwflag: 1 # 1需要密码,2不需要密码
  797. index:
  798. Statistics: hlw_quota_test
  799. type:
  800. Statistics: hlw_quota_test
  801. host: http://172.26.0.190:9200
  802. tHost: 172.26.0.190:9300
  803. clusterName: jkzl
  804. securityUser: elastic:changeme
  805. user: lion
  806. password: jkzlehr
  807. # 上传文件临时路径配置
  808. FileTempPath:
  809. upload_temp_path : /var/local/temp
  810. image_path : /var/local/upload/images
  811. voice_path : /var/local/upload/voice
  812. chat_file_path : /var/local/upload/chat
  813. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  814. testPattern:
  815. sign: 0
  816. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  817. wlyy:
  818. url: http://ehr.yihu.com/wlyy/
  819. qywx:
  820. url: 2
  821. id: 1
  822. express:
  823. sf_url: https://mrds-admin.sf-express.com:443
  824. sf_code: JKZL
  825. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  826. ---
  827. spring:
  828. profiles: tnJwprod
  829. datasource:
  830. driver-class-name: com.mysql.cj.jdbc.Driver
  831. url: jdbc:mysql://10.9.1.247:3310/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  832. username: wlyy
  833. password: qY#j2n5O
  834. # elasticsearch:
  835. # cluster-name: jkzl #集群名 默认elasticsearch
  836. # cluster-nodes: 192.0.33.26:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  837. # client-transport-sniff: false
  838. # jest:
  839. # uris: http://192.0.33.26:9300
  840. # connection-timeout: 60000 # Connection timeout in milliseconds.
  841. # multi-threaded: true # Enable connection requests from multiple execution threads.
  842. activemq:
  843. broker-url: tcp://59.61.92.90:9103
  844. user: jkzl
  845. password: jkzlehr
  846. redis:
  847. host: 10.9.1.247 # Redis server host.
  848. port: 6380 # Redis server port.
  849. password: Kb6wKDQP1W4
  850. fastDFS:
  851. fastdfs_file_url: https://hlwyy.xmzsh.com/fastdfs/
  852. fast-dfs:
  853. tracker-server: 10.9.1.247:22122 #服务器地址
  854. wechat:
  855. id: sd_tnzyy_wx # base库中,wx_wechat 的id字段 # todo 待配置
  856. flag: true #演示环境 true走Mysql数据库 false走Oracle
  857. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  858. # 短信验证码发送的客户端标识,居民端
  859. sms:
  860. clientId: EwC0iRSrcP #todo 待配置
  861. myFamily:
  862. qrCodeFailurTime: 2
  863. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  864. demo:
  865. flag: true
  866. #支付支付
  867. pay:
  868. flag: true
  869. hospital:
  870. url: https://wx.xmzsh.com
  871. mqUser: JKZL
  872. mqPwd: 123456
  873. SourceSysCode: S60
  874. TargetSysCode: S01
  875. im:
  876. im_list_get: http://10.9.1.247:3000/
  877. data_base_name: im
  878. es:
  879. pwflag: 1 # 1需要密码,2不需要密码
  880. index:
  881. Statistics: hlw_quota_prod
  882. type:
  883. Statistics: hlw_quota_prod
  884. host: http://10.9.1.247:9200
  885. tHost: 10.9.1.247:9300
  886. clusterName: jkzl
  887. user: lion
  888. password: jkzlehr
  889. securityUser: lion:jkzlehr
  890. # 上传文件临时路径配置
  891. FileTempPath:
  892. upload_temp_path : /var/local/temp
  893. image_path : /var/local/upload/images
  894. voice_path : /var/local/upload/voice
  895. chat_file_path : /var/local/upload/chat
  896. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  897. testPattern:
  898. sign: 0
  899. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  900. wlyy:
  901. url: http://www.xmtyw.cn/wlyytest/
  902. qywx:
  903. url: https://hlwyy.xmzsh.com/hlwyy
  904. id: zsyy
  905. express:
  906. sf_url: https://mrds-admin.sf-express.com:443
  907. sf_code: WH000102
  908. sf_check_word: TGUQASFNAZyjt9112
  909. ---
  910. spring:
  911. profiles: dsyy
  912. datasource:
  913. driver-class-name: com.mysql.cj.jdbc.Driver
  914. url: jdbc:mysql://127.0.0.1:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  915. username: wlyy
  916. password: 2oEq3Kf7@zjxl
  917. activemq:
  918. broker-url: tcp://172.26.0.116:61616
  919. user: admin
  920. password: admin
  921. redis:
  922. host: 127.0.0.1 # Redis server host.
  923. port: 6380 # Redis server port.
  924. password: Kb6wKDQP1W4
  925. fastDFS:
  926. fastdfs_file_url: http://127.0.0.1:8888/
  927. fast-dfs:
  928. tracker-server: 172.26.0.110:22122 #服务器地址
  929. wechat:
  930. id: xm_hcyy_wx # base库中,wx_wechat 的id字段
  931. flag: false #演示环境 true走Mysql数据库 false走Oracle
  932. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  933. sms:
  934. clientId: EwC0iRSrcP
  935. myFamily:
  936. qrCodeFailurTime: 2
  937. demo:
  938. flag: true
  939. pay:
  940. flag: true
  941. hospital:
  942. url: https://wx.xmzsh.com
  943. mqUser: JKZL
  944. mqPwd: 123456
  945. SourceSysCode: S60
  946. TargetSysCode: S01
  947. im:
  948. im_list_get: http://172.26.0.105:3000/
  949. data_base_name: im_internet_hospital
  950. es:
  951. pwflag: 1 # 1需要密码,2不需要密码
  952. index:
  953. Statistics: hlw_quota_test
  954. type:
  955. Statistics: hlw_quota_test
  956. host: http://127.0.0.1:9000
  957. tHost: 127.0.0.1:9300
  958. clusterName: jkzl
  959. securityUser: lion:jkzlehr
  960. user: lion
  961. password: jkzlehr
  962. FileTempPath:
  963. upload_temp_path : /var/local/temp
  964. image_path : /var/local/upload/images
  965. voice_path : /var/local/upload/voice
  966. chat_file_path : /var/local/upload/chat
  967. testPattern:
  968. sign: 0
  969. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  970. wlyy:
  971. url: http://ehr.yihu.com/wlyy/
  972. qywx:
  973. url: 2
  974. id: 1
  975. express:
  976. sf_url: http://mrds-admin-ci.sit.sf-express.com:45478
  977. sf_code: HD000001
  978. sf_check_word: AAAABBBBCCCCDDDD
  979. ---
  980. spring:
  981. profiles: hcyyProd
  982. datasource:
  983. driver-class-name: com.mysql.cj.jdbc.Driver
  984. url: jdbc:mysql://192.168.120.103:6001/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  985. username: wlyy
  986. password: 2oEq3Kf7@zjxl
  987. activemq:
  988. broker-url: tcp://59.61.92.90:9103
  989. user: jkzl
  990. password: jkzlehr
  991. redis:
  992. host: 192.168.120.103 # Redis server host.
  993. port: 6007 # Redis server port.
  994. password: Kb6wKDQP1W4
  995. fastDFS:
  996. fastdfs_file_url: https://hlwyy.xmzsh.com/fastdfs/
  997. fast-dfs:
  998. tracker-server: 192.168.120.103:6002 #服务器地址
  999. wechat:
  1000. id: xm_hcyy_wx # base库中,wx_wechat 的id字段 # todo 待配置
  1001. flag: true #演示环境 true走Mysql数据库 false走Oracle
  1002. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage # 短信验证码发送的客户端标识,居民端
  1003. sms:
  1004. clientId: EwC0iRSrcP #todo 待配置
  1005. myFamily:
  1006. qrCodeFailurTime: 2 # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  1007. demo:
  1008. flag: true #支付支付
  1009. pay:
  1010. flag: true
  1011. hospital:
  1012. url: https://wx.xmzsh.com
  1013. mqUser: JKZL
  1014. mqPwd: 123456
  1015. SourceSysCode: S60
  1016. TargetSysCode: S01
  1017. im:
  1018. im_list_get: http://127.0.0.1:3000/
  1019. data_base_name: im
  1020. es:
  1021. pwflag: 1 # 1需要密码,2不需要密码
  1022. index:
  1023. Statistics: hlw_quota_prod
  1024. type:
  1025. Statistics: hlw_quota_prod
  1026. host: http://192.168.120.103:6005
  1027. tHost: 192.168.120.103:6006
  1028. securityUser: elastic:elastic
  1029. clusterName: jkzl
  1030. user: lion
  1031. password: jkzlehr
  1032. FileTempPath: # 上传文件临时路径配置
  1033. upload_temp_path : /var/local/temp
  1034. image_path : /var/local/upload/images
  1035. voice_path : /var/local/upload/voice
  1036. chat_file_path : /var/local/upload/chat
  1037. testPattern: #文件服务器上传配置 0本地,1.I健康,2.内网调用
  1038. sign: 0
  1039. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  1040. wlyy:
  1041. url: http://www.xmtyw.cn/wlyytest/
  1042. qywx:
  1043. url: https://hlwyy.xmzsh.com/hlwyy
  1044. id: zsyy
  1045. express:
  1046. sf_url: https://mrds-admin.sf-express.com:443
  1047. sf_code: WH000102
  1048. sf_check_word: TGUQASFNAZyjt9112
  1049. ---
  1050. spring:
  1051. profiles: yqfk
  1052. datasource:
  1053. driver-class-name: com.mysql.cj.jdbc.Driver
  1054. url: jdbc:mysql://10.90.32.3:22042/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  1055. username: jkzl_root
  1056. password: jkzlehr@2020%
  1057. activemq:
  1058. broker-url: tcp://59.61.92.90:9103
  1059. user: jkzl
  1060. password: jkzlehr
  1061. redis:
  1062. host: 127.0.0.1 # Redis server host.
  1063. port: 6380 # Redis server port.
  1064. password: Kb6wKDQP1W4
  1065. fastDFS:
  1066. fastdfs_file_url: https://hlwyy.xmzsh.com/fastdfs/
  1067. fast-dfs:
  1068. tracker-server: 192.168.120.103:6002 #服务器地址
  1069. wechat:
  1070. id: xm_hcyy_wx # base库中,wx_wechat 的id字段 # todo 待配置
  1071. flag: true #演示环境 true走Mysql数据库 false走Oracle
  1072. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage # 短信验证码发送的客户端标识,居民端
  1073. sms:
  1074. clientId: EwC0iRSrcP #todo 待配置
  1075. myFamily:
  1076. qrCodeFailurTime: 2 # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  1077. demo:
  1078. flag: true #支付支付
  1079. pay:
  1080. flag: true
  1081. hospital:
  1082. url: https://wx.xmzsh.com
  1083. mqUser: JKZL
  1084. mqPwd: 123456
  1085. SourceSysCode: S60
  1086. TargetSysCode: S01
  1087. im:
  1088. im_list_get: http://127.0.0.1:3000/
  1089. data_base_name: im
  1090. es:
  1091. pwflag: 1 # 1需要密码,2不需要密码
  1092. index:
  1093. Statistics: hlw_quota_prod
  1094. type:
  1095. Statistics: hlw_quota_prod
  1096. host: http://192.168.120.103:6005
  1097. tHost: 192.168.120.103:6006
  1098. securityUser: elastic:elastic
  1099. clusterName: jkzl
  1100. user: lion
  1101. password: jkzlehr
  1102. FileTempPath: # 上传文件临时路径配置
  1103. upload_temp_path : /var/local/temp
  1104. image_path : /var/local/upload/images
  1105. voice_path : /var/local/upload/voice
  1106. chat_file_path : /var/local/upload/chat
  1107. testPattern: #文件服务器上传配置 0本地,1.I健康,2.内网调用
  1108. sign: 0
  1109. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  1110. wlyy:
  1111. url: http://www.xmtyw.cn/wlyytest/
  1112. qywx:
  1113. url: https://hlwyy.xmzsh.com/hlwyy
  1114. id: zsyy
  1115. express:
  1116. sf_url: https://mrds-admin.sf-express.com:443
  1117. sf_code: WH000102
  1118. sf_check_word: TGUQASFNAZyjt9112
  1119. swagger:
  1120. basic:
  1121. enable: true
  1122. username: jw
  1123. password: jkzl
  1124. ---
  1125. spring:
  1126. profiles: ZjxlProd
  1127. datasource:
  1128. driver-class-name: com.mysql.cj.jdbc.Driver
  1129. url: jdbc:mysql://172.26.0.13:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  1130. username: root
  1131. password: jkzlehr
  1132. # elasticsearch:
  1133. # cluster-name: jkzl #集群名 默认elasticsearch
  1134. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  1135. # client-transport-sniff: false
  1136. # jest:
  1137. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  1138. # connection-timeout: 60000 # Connection timeout in milliseconds.
  1139. # multi-threaded: true # Enable connection requests from multiple execution threads.
  1140. activemq:
  1141. broker-url: tcp://172.26.0.116:61616
  1142. user: admin
  1143. password: admin
  1144. redis:
  1145. host: 172.26.0.253 # Redis server host.
  1146. port: 6379 # Redis server port.
  1147. fastDFS:
  1148. fastdfs_file_url: http://172.26.0.110:8888/
  1149. fast-dfs:
  1150. tracker-server: 172.26.0.110:22122 #服务器地址
  1151. wechat:
  1152. id: xm_zjxl_wx # base库中,wx_wechat 的id字段
  1153. flag: false #演示环境 true走Mysql数据库 false走Oracle
  1154. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  1155. # 短信验证码发送的客户端标识,居民端
  1156. sms:
  1157. clientId: EwC0iRSrcP
  1158. myFamily:
  1159. qrCodeFailurTime: 2
  1160. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  1161. demo:
  1162. flag: true
  1163. #支付支付
  1164. pay:
  1165. flag: true
  1166. hospital:
  1167. url: https://wx.xmzsh.com
  1168. mqUser: JKZL
  1169. mqPwd: 123456
  1170. SourceSysCode: S60
  1171. TargetSysCode: S01
  1172. im:
  1173. im_list_get: http://172.26.0.105:3000/
  1174. data_base_name: im_internet_hospital
  1175. es:
  1176. pwflag: 1 # 1需要密码,2不需要密码
  1177. index:
  1178. Statistics: hlw_quota_test
  1179. type:
  1180. Statistics: hlw_quota_test
  1181. host: http://172.26.0.55:9000
  1182. tHost: 172.26.0.55:9300
  1183. clusterName: jkzl
  1184. securityUser: lion:jkzlehr
  1185. user: lion
  1186. password: jkzlehr
  1187. # 上传文件临时路径配置
  1188. FileTempPath:
  1189. upload_temp_path : /var/local/temp
  1190. image_path : /var/local/upload/images
  1191. voice_path : /var/local/upload/voice
  1192. chat_file_path : /var/local/upload/chat
  1193. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  1194. testPattern:
  1195. sign: 0
  1196. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  1197. wlyy:
  1198. url: http://ehr.yihu.com/wlyy/
  1199. qywx:
  1200. url: 2
  1201. id: 1
  1202. express:
  1203. sf_url: http://mrds-admin-ci.sit.sf-express.com:45478
  1204. sf_code: HD000001
  1205. sf_check_word: AAAABBBBCCCCDDDD
  1206. ---
  1207. spring:
  1208. profiles: mlwProd
  1209. datasource:
  1210. driver-class-name: com.mysql.cj.jdbc.Driver
  1211. url: jdbc:mysql://127.0.0.1:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  1212. username: root
  1213. password: 4D^tK%!4
  1214. # elasticsearch:
  1215. # cluster-name: jkzl #集群名 默认elasticsearch
  1216. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  1217. # client-transport-sniff: false
  1218. # jest:
  1219. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  1220. # connection-timeout: 60000 # Connection timeout in milliseconds.
  1221. # multi-threaded: true # Enable connection requests from multiple execution threads.
  1222. activemq:
  1223. broker-url: tcp://172.26.0.116:61616
  1224. user: admin
  1225. password: admin
  1226. redis:
  1227. host: 127.0.0.1 # Redis server host.
  1228. port: 6379 # Redis server port.
  1229. password: Kb6wKDQP1W4
  1230. fastDFS:
  1231. fastdfs_file_url: http://127.0.0.1:8888/
  1232. fast-dfs:
  1233. tracker-server: 127.0.0.1:22122 #服务器地址
  1234. wechat:
  1235. id: xm_zjxl_wx # base库中,wx_wechat 的id字段
  1236. flag: false #演示环境 true走Mysql数据库 false走Oracle
  1237. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  1238. # 短信验证码发送的客户端标识,居民端
  1239. sms:
  1240. clientId: EwC0iRSrcP
  1241. myFamily:
  1242. qrCodeFailurTime: 2
  1243. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  1244. demo:
  1245. flag: true
  1246. #支付支付
  1247. pay:
  1248. flag: true
  1249. hospital:
  1250. url: https://wx.xmzsh.com
  1251. mqUser: JKZL
  1252. mqPwd: 123456
  1253. SourceSysCode: S60
  1254. TargetSysCode: S01
  1255. im:
  1256. im_list_get: http://172.26.0.105:3000/
  1257. data_base_name: im_internet_hospital
  1258. es:
  1259. pwflag: 1 # 1需要密码,2不需要密码
  1260. index:
  1261. Statistics: hlw_quota_test
  1262. type:
  1263. Statistics: hlw_quota_test
  1264. host: http://172.26.0.55:9000
  1265. tHost: 172.26.0.55:9300
  1266. clusterName: jkzl
  1267. securityUser: lion:jkzlehr
  1268. user: lion
  1269. password: jkzlehr
  1270. # 上传文件临时路径配置
  1271. FileTempPath:
  1272. upload_temp_path : /var/local/temp
  1273. image_path : /var/local/upload/images
  1274. voice_path : /var/local/upload/voice
  1275. chat_file_path : /var/local/upload/chat
  1276. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  1277. testPattern:
  1278. sign: 0
  1279. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  1280. wlyy:
  1281. url: http://ehr.yihu.com/wlyy/
  1282. qywx:
  1283. url: 2
  1284. id: 1
  1285. express:
  1286. sf_url: http://mrds-admin-ci.sit.sf-express.com:45478
  1287. sf_code: HD000001
  1288. sf_check_word: AAAABBBBCCCCDDDD
  1289. ---
  1290. spring:
  1291. profiles: mlwTest
  1292. datasource:
  1293. driver-class-name: com.mysql.cj.jdbc.Driver
  1294. url: jdbc:mysql://172.26.0.114:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  1295. username: root
  1296. password: 4D^tK%!4
  1297. # elasticsearch:
  1298. # cluster-name: jkzl #集群名 默认elasticsearch
  1299. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  1300. # client-transport-sniff: false
  1301. # jest:
  1302. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  1303. # connection-timeout: 60000 # Connection timeout in milliseconds.
  1304. # multi-threaded: true # Enable connection requests from multiple execution threads.
  1305. activemq:
  1306. broker-url: tcp://172.26.0.116:61616
  1307. user: admin
  1308. password: admin
  1309. redis:
  1310. host: 172.26.0.253 # Redis server host.
  1311. port: 6390 # Redis server port.
  1312. password: Kb6wKDQP1W4
  1313. fastDFS:
  1314. fastdfs_file_url: http://172.26.0.110:8888/
  1315. fast-dfs:
  1316. tracker-server: 172.26.0.110:22122 #服务器地址
  1317. wechat:
  1318. id: xm_mlwyy_wx # base库中,wx_wechat 的id字段
  1319. flag: false #演示环境 true走Mysql数据库 false走Oracle
  1320. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  1321. # 短信验证码发送的客户端标识,居民端
  1322. sms:
  1323. clientId: EwC0iRSrcP
  1324. myFamily:
  1325. qrCodeFailurTime: 2
  1326. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  1327. demo:
  1328. flag: true
  1329. #支付支付
  1330. pay:
  1331. flag: true
  1332. hospital:
  1333. url: https://wx.xmzsh.com
  1334. mqUser: JKZL
  1335. mqPwd: 123456
  1336. SourceSysCode: S60
  1337. TargetSysCode: S01
  1338. im:
  1339. im_list_get: http://172.26.0.153:3000/
  1340. data_base_name: im
  1341. es:
  1342. pwflag: 1 # 1需要密码,2不需要密码
  1343. index:
  1344. Statistics: hlw_quota_test
  1345. type:
  1346. Statistics: hlw_quota_test
  1347. host: http://172.26.0.55:9000
  1348. tHost: 172.26.0.55:9300
  1349. clusterName: jkzl
  1350. securityUser: lion:jkzlehr
  1351. user: lion
  1352. password: jkzlehr
  1353. # 上传文件临时路径配置
  1354. FileTempPath:
  1355. upload_temp_path : /var/local/temp
  1356. image_path : /var/local/upload/images
  1357. voice_path : /var/local/upload/voice
  1358. chat_file_path : /var/local/upload/chat
  1359. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  1360. testPattern:
  1361. sign: 0
  1362. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  1363. wlyy:
  1364. url: http://ehr.yihu.com/wlyy/
  1365. qywx:
  1366. url: 2
  1367. id: 1
  1368. express:
  1369. sf_url: http://mrds-admin-ci.sit.sf-express.com:45478
  1370. sf_code: HD000001
  1371. sf_check_word: AAAABBBBCCCCDDDD