application.yml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  1. #通用的配置不用区分环境变量
  2. server:
  3. # port: ${server.svr-internet-hospital-entrance-port}
  4. port: 10023
  5. spring:
  6. datasource:
  7. driver-class-name: com.mysql.jdbc.Driver
  8. max-active: 50
  9. max-idle: 50 #最大空闲连接
  10. min-idle: 10 #最小空闲连接
  11. validation-query-timeout: 20
  12. log-validation-errors: true
  13. validation-interval: 60000 #避免过度验证,保证验证不超过这个频率——以毫秒为单位。如果一个连接应该被验证,但上次验证未达到指定间隔,将不再次验证。
  14. validation-query: SELECT 1 #SQL 查询, 用来验证从连接池取出的连接, 在将连接返回给调用者之前。 如果指定, 则查询必须是一个SQL SELECT 并且必须返回至少一行记录
  15. test-on-borrow: true #指明是否在从池中取出连接前进行检验, 如果检验失败, 则从池中去除连接并尝试取出另一个。注意: 设置为true 后如果要生效,validationQuery 参数必须设置为非空字符串
  16. test-on-return: true #指明是否在归还到池中前进行检验 注意: 设置为true 后如果要生效validationQuery 参数必须设置为非空字符串
  17. idle-timeout: 30000
  18. connection-test-query: SELECT 1
  19. num-tests-per-eviction-run: 50 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和maxActive
  20. test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
  21. min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
  22. time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
  23. http:
  24. multipart:
  25. max-file-size: 30MB
  26. max-request-size: 100MB
  27. redis:
  28. database: 0 # Database index used by the connection factory.
  29. password: # Login password of the redis server.
  30. timeout: 120000 # 连接超时时间(毫秒) 60秒
  31. pool:
  32. max-active: 20 # 连接池最大连接数(使用负值表示没有限制)
  33. max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
  34. max-idle: 20 # 连接池中的最大空闲连接
  35. min-idle: 5 # 连接池中的最小空闲连接
  36. application:
  37. name: svr-internet-hospital-entrance
  38. fast-dfs:
  39. # tracker-server: 172.26.0.110:22122 #服务器地址
  40. connect-timeout: 2 #链接超时时间
  41. network-timeout: 30
  42. charset: ISO8859-1 #编码
  43. http:
  44. tracker-http-port: 80
  45. anti-steal-token: no
  46. secret-key: FastDFS1234567890
  47. pool: #连接池大小
  48. init-size: 5
  49. max-size: 20
  50. wait-time: 500
  51. configDefault: # 默认配置
  52. saasId: xmjkzl_saasId
  53. # 上传文件临时路径配置
  54. FileTempPath:
  55. upload_temp_path : /var/local/temp
  56. image_path : /var/local/upload/images
  57. voice_path : /var/local/upload/voice
  58. chat_file_path : /var/local/upload/chat
  59. #是否开启i健康接口 0关闭,1开启
  60. testPattern:
  61. sign: 0
  62. wlyy:
  63. url: http://www.xmtyw.cn/wlyytest/
  64. swagger:
  65. basic:
  66. enable: true
  67. username: jw
  68. password: jkzl
  69. ---
  70. spring:
  71. profiles: jwdev
  72. datasource:
  73. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  74. username: ssgg
  75. password: ssgg@jkzl2019
  76. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  77. demo:
  78. flag: true
  79. #支付支付
  80. pay:
  81. flag: true
  82. hospital:
  83. url: https://wx.xmzsh.com
  84. mqUser: JKZL
  85. mqPwd: 123456
  86. SourceSysCode: S60
  87. TargetSysCode: S01
  88. im:
  89. im_list_get: http://172.26.0.105:3000/
  90. data_base_name: im_internet_hospital
  91. fastDFS:
  92. fastdfs_file_url: http://172.26.0.110:8888/
  93. fast-dfs:
  94. tracker-server: 192.168.103.159:22122 #服务器地址
  95. #是否开启i健康接口 0关闭,1开启
  96. testPattern:
  97. sign: 0
  98. wlyy:
  99. url: http://www.xmtyw.cn/wlyytest/
  100. express:
  101. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  102. sf_code: JKZL
  103. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  104. ---
  105. spring:
  106. profiles: jwtest
  107. datasource:
  108. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  109. username: ssgg
  110. password: ssgg@jkzl2019
  111. redis:
  112. host: 172.26.0.253 # Redis server host.
  113. port: 6379 # Redis server port.
  114. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  115. demo:
  116. flag: true
  117. #支付支付
  118. pay:
  119. flag: true
  120. hospital:
  121. url: https://wx.xmzsh.com
  122. mqUser: JKZL
  123. mqPwd: 123456
  124. SourceSysCode: S60
  125. TargetSysCode: S01
  126. im:
  127. im_list_get: http://172.26.0.105:3000/
  128. data_base_name: im_internet_hospital
  129. fastDFS:
  130. fastdfs_file_url: http://172.26.0.110:8888/
  131. fast-dfs:
  132. tracker-server: 192.168.103.159:22122 #服务器地址
  133. #是否开启i健康接口 0关闭,1开启
  134. testPattern:
  135. sign: 0
  136. wlyy:
  137. url: http://www.xmtyw.cn/wlyytest/
  138. wechat:
  139. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  140. flag: false #演示环境 true走Mysql数据库 false走Oracle
  141. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  142. express:
  143. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  144. sf_code: JKZL
  145. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  146. ---
  147. spring:
  148. profiles: jwprod
  149. datasource:
  150. url: jdbc:mysql://192.0.33.27:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  151. username: im
  152. password: 2oEq3Kf7
  153. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  154. demo:
  155. flag: false
  156. #支付支付
  157. pay:
  158. flag: true
  159. hospital:
  160. url: https://wx.xmzsh.com
  161. mqUser: JKZL
  162. mqPwd: 123456
  163. SourceSysCode: S60
  164. TargetSysCode: S01
  165. im:
  166. im_list_get: http://172.16.1.42:3000/
  167. data_base_name: im
  168. fastDFS:
  169. fastdfs_file_url: http://192.0.33.26:8888/
  170. fast-dfs:
  171. tracker-server: 192.168.103.159:22122 #服务器地址
  172. #是否开启i健康接口 0关闭,1开启
  173. testPattern:
  174. sign: 0
  175. wlyy:
  176. url: http://www.xmtyw.cn/wlyytest/
  177. wechat:
  178. id: xm_zsyy_wx # base库中,wx_wechat 的id字段
  179. flag: false #演示环境 true走Mysql数据库 false走Oracle
  180. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  181. express:
  182. sf_url: https://mrds-admin.sf-express.com:443
  183. sf_code: WH000102
  184. sf_check_word: TGUQASFNAZyjt9112
  185. ---
  186. # 眼科医院前置机
  187. spring:
  188. profiles: jwOracleTest
  189. datasource:
  190. driver-class-name: oracle.jdbc.driver.OracleDriver
  191. url: jdbc:oracle:thin:@172.26.0.141:1521:helowin
  192. username: normal
  193. password: normal
  194. jpa:
  195. properties:
  196. hibernate:
  197. dialect: org.hibernate.dialect.Oracle10gDialect
  198. show_sql: true
  199. database: oracle
  200. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  201. demo:
  202. flag: false
  203. #支付支付
  204. pay:
  205. flag: true
  206. hospital:
  207. url: https://wx.xmzsh.com
  208. mqUser: JKZL
  209. mqPwd: 123456
  210. SourceSysCode: S60
  211. TargetSysCode: S01
  212. im:
  213. im_list_get: http://172.16.1.42:3000/
  214. data_base_name: im
  215. fastDFS:
  216. fastdfs_file_url: http://192.0.33.26:8888/
  217. fast-dfs:
  218. tracker-server: 192.168.103.159:22122 #服务器地址
  219. #是否开启i健康接口 0关闭,1开启
  220. testPattern:
  221. sign: 0
  222. wlyy:
  223. url: http://www.xmtyw.cn/wlyytest/
  224. wechat:
  225. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  226. flag: false #演示环境 true走Mysql数据库 false走Oracle
  227. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  228. express:
  229. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  230. sf_code: WH000091
  231. sf_check_word: SFAHKAOFAAITyjt7890
  232. ---
  233. # 眼科医院前置机
  234. spring:
  235. profiles: ykjzOracleProd
  236. datasource:
  237. driver-class-name: oracle.jdbc.driver.OracleDriver
  238. url: jdbc:oracle:thin:@192.168.20.55:1521:orcl
  239. username: system
  240. password: hxyk9573
  241. jpa:
  242. properties:
  243. hibernate:
  244. dialect: org.hibernate.dialect.Oracle10gDialect
  245. show_sql: true
  246. database: oracle
  247. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  248. demo:
  249. flag: false
  250. #支付支付
  251. pay:
  252. flag: true
  253. hospital:
  254. url: https://wx.xmzsh.com
  255. mqUser: JKZL
  256. mqPwd: 123456
  257. SourceSysCode: S60
  258. TargetSysCode: S01
  259. im:
  260. im_list_get: http://172.16.1.42:3000/
  261. data_base_name: im
  262. fastDFS:
  263. fastdfs_file_url: http://192.0.33.26:8888/
  264. fast-dfs:
  265. tracker-server: 192.168.103.159:22122 #服务器地址
  266. #是否开启i健康接口 0关闭,1开启
  267. testPattern:
  268. sign: 0
  269. wlyy:
  270. url: http://www.xmtyw.cn/wlyytest/
  271. wechat:
  272. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  273. flag: false #演示环境 true走Mysql数据库 false走Oracle
  274. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  275. express:
  276. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  277. sf_code: WH000091
  278. sf_check_word: SFAHKAOFAAITyjt7890
  279. ---
  280. # 眼科医院前置机
  281. spring:
  282. profiles: jwOracleProd
  283. datasource:
  284. driver-class-name: oracle.jdbc.driver.OracleDriver
  285. url: jdbc:oracle:thin:@192.168.20.55:1521:orcl
  286. username: system
  287. password: hxyk9573
  288. jpa:
  289. properties:
  290. hibernate:
  291. dialect: org.hibernate.dialect.Oracle10gDialect
  292. show_sql: true
  293. database: oracle
  294. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  295. demo:
  296. flag: false
  297. #支付支付
  298. pay:
  299. flag: true
  300. hospital:
  301. url: https://wx.xmzsh.com
  302. mqUser: JKZL
  303. mqPwd: 123456
  304. SourceSysCode: S60
  305. TargetSysCode: S01
  306. im:
  307. im_list_get: http://172.16.1.42:3000/
  308. data_base_name: im
  309. fastDFS:
  310. fastdfs_file_url: http://192.0.33.26:8888/
  311. fast-dfs:
  312. tracker-server: 192.168.103.159:22122 #服务器地址
  313. #是否开启i健康接口 0关闭,1开启
  314. testPattern:
  315. sign: 0
  316. wlyy:
  317. url: http://www.xmtyw.cn/wlyytest/
  318. wechat:
  319. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  320. flag: false #演示环境 true走Mysql数据库 false走Oracle
  321. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  322. express:
  323. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  324. sf_code: WH000091
  325. sf_check_word: SFAHKAOFAAITyjt7890
  326. ---
  327. #心脏中心前置机配置
  328. spring:
  329. profiles: xzprod_in
  330. datasource:
  331. driver-class-name: com.mysql.jdbc.Driver
  332. url: jdbc:mysql://192.168.103.155:7306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  333. username: jkzl
  334. password: jkzl@2020
  335. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  336. demo:
  337. flag: false
  338. #支付支付
  339. pay:
  340. flag: true
  341. hospital:
  342. url: https://wx.xmzsh.com
  343. mqUser: JKZL
  344. mqPwd: 123456
  345. SourceSysCode: S60
  346. TargetSysCode: S01
  347. im:
  348. im_list_get: http://192.168.118.240:3000/
  349. data_base_name: im
  350. fastDFS:
  351. fastdfs_file_url: http://192.168.103.159:8888/
  352. fast-dfs:
  353. tracker-server: 192.168.103.159:22122 #服务器地址
  354. #是否开启i健康接口 0关闭,1开启
  355. testPattern:
  356. sign: 0
  357. wlyy:
  358. url: http://www.xmtyw.cn/wlyytest/
  359. wechat:
  360. id: xm_xzzx_wx # base库中,wx_wechat 的id字段
  361. flag: false #演示环境 true走Mysql数据库 false走Oracle
  362. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  363. express:
  364. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  365. sf_code: WH000061
  366. sf_check_word: BEWFSCXSyjt4314rz
  367. ---
  368. #心脏中心前置机配置
  369. spring:
  370. profiles: xzprod
  371. datasource:
  372. driver-class-name: com.mysql.jdbc.Driver
  373. url: jdbc:mysql://172.16.100.240:7306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  374. username: jkzl
  375. password: jkzl@2020
  376. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  377. demo:
  378. flag: false
  379. #支付支付
  380. pay:
  381. flag: true
  382. hospital:
  383. url: https://wx.xmzsh.com
  384. mqUser: JKZL
  385. mqPwd: 123456
  386. SourceSysCode: S60
  387. TargetSysCode: S01
  388. im:
  389. im_list_get: http://172.16.100.65:3000/
  390. data_base_name: im
  391. fastDFS:
  392. fastdfs_file_url: http://172.16.100.240:8888/
  393. fast-dfs:
  394. tracker-server: 172.16.100.240:22122 #服务器地址
  395. #是否开启i健康接口 0关闭,1开启
  396. testPattern:
  397. sign: 0
  398. wlyy:
  399. url: http://www.xmtyw.cn/wlyytest/
  400. wechat:
  401. id: xm_xzzx_wx # base库中,wx_wechat 的id字段
  402. flag: false #演示环境 true走Mysql数据库 false走Oracle
  403. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  404. express:
  405. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  406. sf_code: WH000061
  407. sf_check_word: BEWFSCXSyjt4314rz
  408. ---
  409. spring:
  410. profiles: jwystest
  411. datasource:
  412. url: jdbc:mysql://172.26.0.195/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  413. username: root
  414. password: jkzlehr
  415. redis:
  416. host: 172.26.0.190 # Redis server host.
  417. port: 6379 # Redis server port.
  418. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  419. demo:
  420. flag: true
  421. #支付支付
  422. pay:
  423. flag: true
  424. hospital:
  425. url: https://wx.xmzsh.com
  426. mqUser: JKZL
  427. mqPwd: 123456
  428. SourceSysCode: S60
  429. TargetSysCode: S01
  430. im:
  431. im_list_get: http://172.26.0.193:3000/
  432. data_base_name: im_internet_hospital
  433. fastDFS:
  434. fastdfs_file_url: http://172.26.0.110:8888/
  435. fast-dfs:
  436. tracker-server: 172.26.0.110:22122 #服务器地址
  437. #是否开启i健康接口 0关闭,1开启
  438. testPattern:
  439. sign: 0
  440. wlyy:
  441. url: http://www.xmtyw.cn/wlyytest/
  442. wechat:
  443. id: xm_ykyy_wx # base库中,wx_wechat 的id字段 # todo 待配置
  444. flag: false #演示环境 true走Mysql数据库 false走Oracle
  445. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  446. express:
  447. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  448. sf_code: JKZL
  449. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  450. ---
  451. # sqlserverce测试环境
  452. spring:
  453. profiles: sqlServerTest
  454. datasource:
  455. driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
  456. url: jdbc:sqlserver://192.168.131.125:1433;DatabaseName=base
  457. username: sa
  458. password: jkzlehr
  459. jpa:
  460. properties:
  461. hibernate:
  462. default_schema: dbo
  463. naming:
  464. physical-strategy: com.ford.configuration.UpperTableStrategy
  465. database-platform: org.hibernate.dialect.SQLServer2008Dialect
  466. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  467. demo:
  468. flag: false
  469. #支付支付
  470. pay:
  471. flag: true
  472. hospital:
  473. url: https://wx.xmzsh.com
  474. mqUser: JKZL
  475. mqPwd: 123456
  476. SourceSysCode: S60
  477. TargetSysCode: S01
  478. im:
  479. im_list_get: http://172.16.1.42:3000/
  480. data_base_name: im
  481. fastDFS:
  482. fastdfs_file_url: http://192.0.33.26:8888/
  483. fast-dfs:
  484. tracker-server: 192.168.103.159:22122 #服务器地址
  485. #是否开启i健康接口 0关闭,1开启
  486. testPattern:
  487. sign: 0
  488. wlyy:
  489. url: http://www.xmtyw.cn/wlyytest/
  490. wechat:
  491. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  492. flag: false #演示环境 true走Mysql数据库 false走Oracle
  493. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  494. express:
  495. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  496. sf_code: WH000091
  497. sf_check_word: SFAHKAOFAAITyjt7890
  498. ---
  499. # sqlserverce正式环境
  500. spring:
  501. profiles: tnJwprod
  502. datasource:
  503. driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
  504. url: jdbc:sqlserver://10.9.1.246:1433;DatabaseName=ta_zyy
  505. username: sa
  506. password: jsjzx@1234
  507. jpa:
  508. properties:
  509. hibernate:
  510. default_schema: dbo
  511. naming:
  512. physical-strategy: com.ford.configuration.UpperTableStrategy
  513. database-platform: org.hibernate.dialect.SQLServer2008Dialect
  514. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  515. demo:
  516. flag: false
  517. #支付支付
  518. pay:
  519. flag: true
  520. hospital:
  521. url: https://wx.xmzsh.com
  522. mqUser: JKZL
  523. mqPwd: 123456
  524. SourceSysCode: S60
  525. TargetSysCode: S01
  526. im:
  527. im_list_get: http://172.16.1.42:3000/
  528. data_base_name: im
  529. fastDFS:
  530. fastdfs_file_url: http://192.0.33.26:8888/
  531. fast-dfs:
  532. tracker-server: 192.168.103.159:22122 #服务器地址
  533. #是否开启i健康接口 0关闭,1开启
  534. testPattern:
  535. sign: 0
  536. wlyy:
  537. url: http://www.xmtyw.cn/wlyytest/
  538. wechat:
  539. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  540. flag: false #演示环境 true走Mysql数据库 false走Oracle
  541. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  542. express:
  543. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  544. sf_code: WH000091
  545. sf_check_word: SFAHKAOFAAITyjt7890
  546. ---
  547. #海沧医院内网
  548. spring:
  549. profiles: hcyyProd
  550. datasource:
  551. driver-class-name: com.mysql.jdbc.Driver
  552. url: jdbc:mysql://127.0.0.1:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  553. username: wlyy
  554. password: 2oEq3Kf7@zjxl
  555. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  556. demo:
  557. flag: false
  558. #支付支付
  559. pay:
  560. flag: true
  561. hospital:
  562. url: https://wx.xmzsh.com
  563. mqUser: JKZL
  564. mqPwd: 123456
  565. SourceSysCode: S60
  566. TargetSysCode: S01
  567. im:
  568. im_list_get: http://192.168.118.240:3000/
  569. data_base_name: im
  570. fastDFS:
  571. fastdfs_file_url: http://127.0.0.1:8888/
  572. fast-dfs:
  573. tracker-server: :22122 #服务器地址
  574. #是否开启i健康接口 0关闭,1开启
  575. testPattern:
  576. sign: 0
  577. wlyy:
  578. url: http://www.xmtyw.cn/wlyytest/
  579. wechat:
  580. id: xm_xzzx_wx # base库中,wx_wechat 的id字段
  581. flag: false #演示环境 true走Mysql数据库 false走Oracle
  582. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  583. express:
  584. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  585. sf_code: WH000061
  586. sf_check_word: BEWFSCXSyjt4314rz
  587. ---
  588. #海沧医院内网
  589. spring:
  590. profiles: ZjxlProd
  591. datasource:
  592. driver-class-name: com.mysql.jdbc.Driver
  593. url: jdbc:mysql://192.168.1.103:4406/zentao?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  594. username: root
  595. password: jkzlehr
  596. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  597. demo:
  598. flag: false
  599. #支付支付
  600. pay:
  601. flag: true
  602. hospital:
  603. url: https://wx.xmzsh.com
  604. mqUser: JKZL
  605. mqPwd: 123456
  606. SourceSysCode: S60
  607. TargetSysCode: S01
  608. im:
  609. im_list_get: http://192.168.118.240:3000/
  610. data_base_name: im
  611. fastDFS:
  612. fastdfs_file_url: http://127.0.0.1:8888/
  613. fast-dfs:
  614. tracker-server: :22122 #服务器地址
  615. #是否开启i健康接口 0关闭,1开启
  616. testPattern:
  617. sign: 0
  618. wlyy:
  619. url: http://www.xmtyw.cn/wlyytest/
  620. wechat:
  621. id: xm_xzzx_wx # base库中,wx_wechat 的id字段
  622. flag: false #演示环境 true走Mysql数据库 false走Oracle
  623. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  624. express:
  625. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  626. sf_code: WH000061
  627. sf_check_word: BEWFSCXSyjt4314rz