application.yml 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  1. server:
  2. port: 8080
  3. error:
  4. whitelabel:
  5. enabled: false
  6. spring:
  7. datasource:
  8. wlyy:
  9. driver-class-name: com.mysql.jdbc.Driver
  10. max-active: 50
  11. max-idle: 50 #最大空闲连接
  12. min-idle: 10 #最小空闲连接
  13. validation-query-timeout: 20
  14. log-validation-errors: true
  15. validation-interval: 60000 #避免过度验证,保证验证不超过这个频率——以毫秒为单位。如果一个连接应该被验证,但上次验证未达到指定间隔,将不再次验证。
  16. validation-query: SELECT 1 #SQL 查询, 用来验证从连接池取出的连接, 在将连接返回给调用者之前。 如果指定, 则查询必须是一个SQL SELECT 并且必须返回至少一行记录
  17. test-on-borrow: true #指明是否在从池中取出连接前进行检验, 如果检验失败, 则从池中去除连接并尝试取出另一个。注意: 设置为true 后如果要生效,validationQuery 参数必须设置为非空字符串
  18. test-on-return: true #指明是否在归还到池中前进行检验 注意: 设置为true 后如果要生效validationQuery 参数必须设置为非空字符串
  19. idle-timeout: 30000
  20. connection-test-query: SELECT 1
  21. num-tests-per-eviction-run: 50 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和maxActive
  22. test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
  23. min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
  24. time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
  25. health:
  26. driver-class-name: com.mysql.jdbc.Driver
  27. max-active: 50
  28. max-idle: 50 #最大空闲连接
  29. min-idle: 10 #最小空闲连接
  30. validation-query-timeout: 20
  31. log-validation-errors: true
  32. validation-interval: 60000 #避免过度验证,保证验证不超过这个频率——以毫秒为单位。如果一个连接应该被验证,但上次验证未达到指定间隔,将不再次验证。
  33. validation-query: SELECT 1 #SQL 查询, 用来验证从连接池取出的连接, 在将连接返回给调用者之前。 如果指定, 则查询必须是一个SQL SELECT 并且必须返回至少一行记录
  34. test-on-borrow: true #指明是否在从池中取出连接前进行检验, 如果检验失败, 则从池中去除连接并尝试取出另一个。注意: 设置为true 后如果要生效,validationQuery 参数必须设置为非空字符串
  35. test-on-return: true #指明是否在归还到池中前进行检验 注意: 设置为true 后如果要生效validationQuery 参数必须设置为非空字符串
  36. idle-timeout: 30000
  37. connection-test-query: SELECT 1
  38. num-tests-per-eviction-run: 50 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和maxActive
  39. test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
  40. min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
  41. time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
  42. # REDIS
  43. redis:
  44. database: 0 # Database index used by the connection factory.
  45. password: # Login password of the redis server.
  46. timeout: 120000 # 连接超时时间(毫秒) 60秒
  47. pool:
  48. max-active: 20 # 连接池最大连接数(使用负值表示没有限制)
  49. max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
  50. max-idle: 20 # 连接池中的最大空闲连接
  51. min-idle: 5 # 连接池中的最小空闲连接
  52. logging:
  53. level:
  54. root: INFO
  55. redis:
  56. quota:
  57. current:
  58. expire: 12 #实时统计redis 的过期时间 默认是2小时
  59. hibernate:
  60. dialect: org.hibernate.dialect.MySQL5Dialect
  61. show_sql: true
  62. ejb:
  63. naming_strategy: org.hibernate.cfg.ImprovedNamingStrategy
  64. multipart:
  65. enabled: true
  66. max-file-size: 50mb
  67. max-request-size: 50mb
  68. security:
  69. basic:
  70. username: jkzl
  71. password: jkzlehr
  72. ##拦截器开关
  73. interceptor:
  74. doctor:
  75. status: 1 ### 1开启 0 关闭
  76. patient:
  77. status: 1 ### 1开启 0 关闭
  78. accesstoken:
  79. status: 1 ### 1开启 0 关闭
  80. time: 2 ##对外接的accesstoken生命周期 2小时
  81. ---
  82. ##测试的配置
  83. spring:
  84. profiles: test
  85. datasource:
  86. wlyy:
  87. url: jdbc:mysql://172.17.110.160/wlyy?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  88. username: ssgg
  89. password: ssgg
  90. health:
  91. url: jdbc:mysql://172.17.110.160/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  92. username: ssgg
  93. password: ssgg
  94. redis:
  95. host: 172.19.103.88 # Redis server host.
  96. port: 6379 # Redis server port.
  97. # password: jkzl_ehr
  98. server:
  99. server_url: http://ehr.yihu.com/wlyy/
  100. im:
  101. im_list_get: http://172.19.103.88:3000/
  102. data_base_name: im_new
  103. wechat:
  104. appId: wx1f129f7b51701428
  105. appSecret: 988f005d8309ed1795939e0f042431fb
  106. wechat_token: 27eb3bb24f149a7760cf1bb154b08040
  107. wechat_base_url: http%3a%2f%2fehr.yihu.com%2fwlyy
  108. accId: gh_ffd64560fb21
  109. message:
  110. ##医生追加建议提醒 --签约邀请
  111. doctor_invitel_template: uXdBJVbrhKG-WLaCG4s8C4SXSr2kknQ94vKFt-3rIiA
  112. #咨询回复
  113. template_consult_notice: dr4QNyFoRvVsf8uWxXMC1dRyjwnbUuJwJ21vBLhf18
  114. #签约成功
  115. template_sign_success: VYGj8OUKj6FH4i4_nZS2UAHurJxQHx-7_OBPILIdB8s
  116. #签约失败
  117. template_sign_failed: m221Jrkm0UUY00ExTCpQNTB8t_1U_V4LR9Bg8BgH9-o
  118. #健康指导提醒
  119. template_health_notice: 5Nts8lA_at9Cd1JuTK-qDxx95lchpcmUfPTEwYDgXYQ
  120. #解约提醒
  121. template_termination: qZm1NwSueAsbHaOf9DrnLoSj0X5gZuh9W7aDYzLWNds
  122. #预约成功
  123. template_appoint_success: vU5x2tGyk1zUngBrEqMfnFqqMa6M8J98w8k5MCSUYM
  124. #预约取消
  125. template_appoint_failed: r-bVEKgXVyl8O96saoJXlLd7DX1zW7fXA4a0PZHxiQM
  126. #缴费提醒
  127. template_expenses_remind: pZby4Mz3H5angmjGTuvXzo9lwlaVfEiqORwI8soI-5E
  128. #健康教育
  129. template_healthy_article: aO_qqk5nAXaGXhsikPVLNelqzwlrp1LTPfIQ1qRMpxo
  130. #医生变更
  131. template_doctor_change: V5h0F84t972kUzQvWy8qYrgdaYGJVj10pFeFVl19Nb8
  132. #问卷调查
  133. template_doctor_survey: OqQXrb-e43_TJpq_70_K_y6vYJgY5mpjFYY4c5RWFP4
  134. #审核结果通知
  135. template_doctor_audit: lCtOgJgL1tBJbAytqN7cn-FgCH_Usg99FENEy2TrC08
  136. #服务结果通知
  137. template_doctor_service: i34rq3xFLnpf_VN2Jor9n2YlQqJMM7oXyYvuctriISw
  138. yihu:
  139. yihu_OpenPlatform_url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
  140. yihu_OpenPlatform_appId: 9000276
  141. yihu_OpenPlatform_secret: OKC8BS1KGXTDE9GPP1EO4VYLUXF8DJ7QUP72H613ZXA
  142. fastDFS:
  143. fastdfs_file_url: http://172.19.103.54:80/
  144. images:
  145. path: /var/local/upload/images
  146. renew_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/renew.png
  147. sign_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/familycontract.png
  148. sign:
  149. check_upload: http://172.19.103.88:8011/wlyy_service
  150. ylzpay:
  151. onepayApi: http://120.42.37.94:1301/onepay-web/
  152. onepayAppId: 1BGKM1UHM03P7B2CA8C000005626EB0E
  153. onepayAppSecret: 1BGKM1UHM03I7B2CA8C00000AB682E9A
  154. express:
  155. sf_url: http://218.17.248.244:11080/bsp-oisp/sfexpressService
  156. # sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
  157. sf_code: SDDF
  158. sf_check_word: ttzlgGyOQu4L
  159. es:
  160. index:
  161. HealthEduArticlePatient: health_edu_article_patient_test
  162. type:
  163. health_edu_article_patient: health_edu_article_patient_test
  164. host: 172.19.103.68
  165. port: 9200
  166. tPort: 9300
  167. clusterName: jkzl
  168. ---
  169. ##正式的配置
  170. spring:
  171. profiles: prod
  172. datasource:
  173. wlyy:
  174. url: jdbc:mysql://59.61.92.90:8079/wlyy?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  175. username: wlyy
  176. password: jkzlehr@123
  177. health:
  178. url: jdbc:mysql://59.61.92.90:8079/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  179. username: wlyy
  180. password: jkzlehr@123
  181. redis:
  182. host: 120.41.253.95 # Redis server host.
  183. port: 6380 # Redis server port.
  184. password: jkzl_ehr
  185. server:
  186. server_url: http://www.xmtyw.cn/wlyy/
  187. im:
  188. im_list_get: http://120.41.253.95:3000/
  189. data_base_name: im
  190. wechat:
  191. appId: wxad04e9c4c5255acf
  192. appSecret: ae77c48ccf1af5d07069f5153d1ac8d3
  193. wechat_token: 27eb3bb24f149a7760cf1bb154b08040
  194. wechat_base_url: http%3a%2f%2fwww.xmtyw.cn%2fwlyy
  195. accId: gh_ffd64560fb21
  196. message:
  197. ##医生追加建议提醒 --签约邀请
  198. doctor_invitel_template: MQn79bx1ofb6hekhmRIuqLU7KjySJQzaBzrimgqVrzA
  199. #咨询回复
  200. template_consult_notice: 0mF_vHj-ILx8EH8DwzmAi7LqzjqYiU9IrSRRmziTZyc
  201. #签约成功
  202. template_sign_success: 0D2vYZVRzFz15p9Y_pkZ1DKutDq8UOsks79FXUKS0tA
  203. #签约失败
  204. template_sign_failed: My2VNERjJt4NXR4Ibh42pdrP6B6ka8rQxZeWinQh99s
  205. #健康指导提醒
  206. template_health_notice: uv31ES_VCmq3tBYtyGmEQvIwU_zh9LDhF3bFpbIUt5g
  207. #解约提醒
  208. template_termination: C0tdXtA_8k-Cy4a1EkzQuI877vqaqAtRkc-e_Gsd7sk
  209. #预约成功
  210. template_appoint_success: FY3Pqa66tHIE1Fv-irbFBPOh5cYP71fkOzfZKH4S-Fo
  211. #预约取消
  212. template_appoint_failed: tldWEb9AN7p_RoHoD8ml0GxWW3V1V_mpEEhp2v6p56s
  213. #缴费提醒
  214. template_expenses_remind: AcrlihhoGbm22A8cdFFDQ4u38ptRw0aiIPf-aGvNxMM
  215. #健康教育
  216. template_healthy_article: a5-ZGf-IUUULsuRNoHWQiBMU6pSYhLgPPqV67SjdLRo
  217. #医生变更
  218. template_doctor_change: dtzSHImbPKfwcrjWlJEjAw3lGlvrLjsobSOE8g4adZA
  219. #问卷调查
  220. template_doctor_survey: 8ZWKJmoJ7VR7Uk4YS7aa0Z94QzCkxsyTW6R4CHhUJII
  221. #审核结果通知
  222. template_doctor_audit: egrX5Larpkv8opQW67_hwsZoT0OHwwUpE1v7HeU_Jnw
  223. #服务结果通知
  224. template_doctor_service: xhi1LEudiZwJfZylOHuZNo8EiA73GtSshPQv5XOt9Lk
  225. yihu:
  226. yihu_OpenPlatform_url: http://api.yihu.com.cn/OpenPlatform/cgiBin/1.0/
  227. yihu_OpenPlatform_appId: 9000276
  228. yihu_OpenPlatform_secret: 2JGL19AH3JS55MQY6ZOFJE1JZJ1OF23GWV67MCDQV74
  229. fastDFS:
  230. fastdfs_file_url: http://www.xmtyw.cn/
  231. images:
  232. path: /var/local/upload/images
  233. renew_path: /usr/local/tomcat8/webapps/wlyy/images/renew.png
  234. sign_path: /usr/local/tomcat8/webapps/wlyy/images/familycontract.png
  235. sign:
  236. check_upload: http://59.61.92.90:8072/wlyy_service
  237. ylzpay:
  238. # onepayApi: https://xmhealth.ylzpay.com:8080/
  239. onepayApi: http://xmhealth.ylzpay.com:8070/
  240. onepayAppId: 1BLF5SEGN00087165F0A000027362BE5
  241. onepayAppSecret: 1BLF5SCBO01V3E78A8C00000F3A0FFE7
  242. express:
  243. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  244. # sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
  245. sf_code: sddf
  246. sf_check_word: PqFN0ADkTwnvXArMhqGxVduag44vyDQ7
  247. es:
  248. index:
  249. HealthEduArticlePatient: health_edu_article_patient_prod
  250. type:
  251. HealthEduArticlePatient: health_edu_article_patient_prod
  252. host: 172.19.103.68
  253. port: 9200
  254. tPort: 9300
  255. clusterName: jkzl
  256. ---
  257. ##开发的配置
  258. spring:
  259. profiles: dev
  260. datasource:
  261. wlyy:
  262. url: jdbc:mysql://172.19.103.77/wlyy?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  263. username: root
  264. password: 123456
  265. health:
  266. url: jdbc:mysql://172.19.103.77/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  267. username: root
  268. password: 123456
  269. redis:
  270. host: 172.19.103.47 # Redis server host.
  271. port: 6379 # Redis server port.
  272. # password: jkzl_ehr
  273. server:
  274. server_url: http://weixin.xmtyw.cn/wlyy-dev/
  275. im:
  276. im_list_get: http://172.19.103.88:3000/
  277. data_base_name: ichat
  278. wechat:
  279. appId: wxd03f859efdf0873d
  280. appSecret: 2935b54b53a957d9516c920a544f2537
  281. wechat_token: 27eb3bb24f149a7760cf1bb154b08040
  282. wechat_base_url: http%3a%2f%2fweixin.xmtyw.cn%2fwlyy-dev
  283. accId: gh_ffd64560fb21
  284. message:
  285. ##医生追加建议提醒 --签约邀请
  286. doctor_invitel_template: TLWrBtNE2kBJaFCdVzDOOnQC8N2TtRY9ZxEzwZXQcR0
  287. #咨询回复
  288. template_consult_notice: qSOW0DBxO3qEBm4ucG0Ial0jxsOyD7_f2TFK5e-mQEc
  289. #签约成功
  290. template_sign_success: hDWV_sknKlhxhOwR5h68OCXbAhRpcgnx9INrT8BybE8
  291. #签约失败
  292. template_sign_failed: ezgttXE7rG4rAboQK2ituG1dKq4PeyCj3LxGJWO_vOA
  293. #健康指导提醒
  294. template_health_notice: 128RCfyCHi22jW8PZzo7vabKMsA3SBv5VeHaDPr2Bhw
  295. #解约提醒
  296. template_termination: LrrzHjnIF67ww5uQUvSiv3_pVKJiIK4ZE3fKrvsT0AE
  297. #预约成功
  298. template_appoint_success: Bo2yqNczSU9zkg4wXoouv9tSeefZ6TziggWL3dTXPYE
  299. #预约取消
  300. template_appoint_failed: pErTBTdweIdrNRf_1Oo62YtQC0aHwPvtLaCzw44JzCQ
  301. #缴费提醒
  302. template_expenses_remind: BkTGJ8S18qZ3DfaptAXnZznAk8RJjx9v93og5vyO0bs
  303. #健康教育
  304. template_healthy_article: LA7erINJ0CSsG2G_ZCrgsDaX3krhsI4qg_NSHEyL_l4
  305. #医生变更
  306. template_doctor_change: TNIDMjduVKgVL4-k71umYLpHROvFB8K6mmm8aZC_EH8
  307. #问卷调查
  308. template_doctor_survey: IjQvzBy0PLeft2kN9mdBhACXPE9I_jyJywJ6B-JRxsY
  309. #审核结果通知
  310. template_doctor_audit: OFyLUeBW3r9trWw-i6pbB1sPSTD4J2recCv_mc-gKxA
  311. #服务结果通知
  312. template_doctor_service: ezr5RlX0nvh7bGU9aVsGDMJbjKDp1uMKP-AGGYXwI5g
  313. yihu:
  314. yihu_OpenPlatform_url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
  315. yihu_OpenPlatform_appId: 9000276
  316. yihu_OpenPlatform_secret: OKC8BS1KGXTDE9GPP1EO4VYLUXF8DJ7QUP72H613ZXA
  317. fastDFS:
  318. fastdfs_file_url: http://172.19.103.54:80/
  319. message:
  320. messageServerUrl: http://10.0.1.3:8080/OpenPlatform/cgiBin/1.0/smsgw/smsSendWS/send
  321. messageAppId: 9000286
  322. messageSecret: NW63YK778QPRUD2A6K5SNF7LYRQ888BWOVD6R4FG2VF
  323. images:
  324. path: /var/local/upload/images
  325. renew_path: /usr/local/apache-tomcat-8.0.26/webapps/wlyy/images/renew.png
  326. sign_path: /usr/local/apache-tomcat-8.0.26/webapps/wlyy/images/familycontract.png
  327. sign:
  328. check_upload: http://172.19.103.87:8011/wlyy_service
  329. ylzpay:
  330. onepayApi: http://120.42.37.94:1301/onepay-web/
  331. onepayAppId: 1BGKM1UHM03P7B2CA8C000005626EB0E
  332. onepayAppSecret: 1BGKM1UHM03I7B2CA8C00000AB682E9A
  333. express:
  334. sf_url: http://218.17.248.244:11080/bsp-oisp/sfexpressService
  335. # sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
  336. sf_code: SDDF
  337. sf_check_word: ttzlgGyOQu4L
  338. es:
  339. index:
  340. HealthEduArticlePatient: health_edu_article_patient_dev
  341. type:
  342. HealthEduArticlePatient: health_edu_article_patient_dev
  343. host: 172.19.103.68
  344. port: 9200
  345. tPort: 9300
  346. clusterName: jkzl
  347. ---
  348. ##开发连测试用这个版本的配置
  349. spring:
  350. profiles: dev_test
  351. datasource:
  352. wlyy:
  353. url: jdbc:mysql://172.19.103.85/wlyy?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  354. username: linzhou
  355. password: linzhou
  356. health:
  357. url: jdbc:mysql://172.19.103.85/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  358. username: linzhou
  359. password: linzhou
  360. redis:
  361. host: 172.19.103.88 # Redis server host.
  362. port: 6379 # Redis server port.
  363. # password: jkzl_ehr
  364. server:
  365. server_url: http://ehr.yihu.com/wlyy/
  366. im:
  367. im_list_get: http://172.19.103.88:3000/
  368. data_base_name: im_new
  369. wechat:
  370. appId: wx1f129f7b51701428
  371. appSecret: 988f005d8309ed1795939e0f042431fb
  372. wechat_token: 27eb3bb24f149a7760cf1bb154b08040
  373. wechat_base_url: http%3a%2f%2fehr.yihu.com%2fwlyy
  374. accId: gh_ffd64560fb21
  375. message:
  376. ##医生追加建议提醒 --签约邀请
  377. doctor_invitel_template: uXdBJVbrhKG-WLaCG4s8C4SXSr2kknQ94vKFt-3rIiA
  378. #咨询回复
  379. template_consult_notice: dr4QNyFoRvVsf8uWxXMC1dRyjwnbUuJwJ21vBLhf18
  380. #签约成功
  381. template_sign_success: VYGj8OUKj6FH4i4_nZS2UAHurJxQHx-7_OBPILIdB8s
  382. #签约失败
  383. template_sign_failed: m221Jrkm0UUY00ExTCpQNTB8t_1U_V4LR9Bg8BgH9-o
  384. #健康指导提醒
  385. template_health_notice: 5Nts8lA_at9Cd1JuTK-qDxx95lchpcmUfPTEwYDgXYQ
  386. #解约提醒
  387. template_termination: qZm1NwSueAsbHaOf9DrnLoSj0X5gZuh9W7aDYzLWNds
  388. #预约成功
  389. template_appoint_success: vU5x2tGyk1zUngBrEqMfnFqqMa6M8J98w8k5MCSUYM
  390. #预约取消
  391. template_appoint_failed: r-bVEKgXVyl8O96saoJXlLd7DX1zW7fXA4a0PZHxiQM
  392. #缴费提醒
  393. template_expenses_remind: pZby4Mz3H5angmjGTuvXzo9lwlaVfEiqORwI8soI-5E
  394. #健康教育
  395. template_healthy_article: aO_qqk5nAXaGXhsikPVLNelqzwlrp1LTPfIQ1qRMpxo
  396. #医生变更
  397. template_doctor_change: V5h0F84t972kUzQvWy8qYrgdaYGJVj10pFeFVl19Nb8
  398. #问卷调查
  399. template_doctor_survey: OqQXrb-e43_TJpq_70_K_y6vYJgY5mpjFYY4c5RWFP4
  400. #审核结果通知
  401. template_doctor_audit: lCtOgJgL1tBJbAytqN7cn-FgCH_Usg99FENEy2TrC08
  402. #服务结果通知
  403. template_doctor_service: i34rq3xFLnpf_VN2Jor9n2YlQqJMM7oXyYvuctriISw
  404. yihu:
  405. yihu_OpenPlatform_url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
  406. yihu_OpenPlatform_appId: 9000276
  407. yihu_OpenPlatform_secret: OKC8BS1KGXTDE9GPP1EO4VYLUXF8DJ7QUP72H613ZXA
  408. fastDFS:
  409. fastdfs_file_url: http://172.19.103.54:80/
  410. images:
  411. path: /var/local/upload/images
  412. renew_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/renew.png
  413. sign_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/familycontract.png
  414. sign:
  415. check_upload: http://172.19.103.88:8011/wlyy_service
  416. express:
  417. sf_url: http://218.17.248.244:11080/bsp-oisp/sfexpressService
  418. # sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
  419. sf_code: SDDF
  420. sf_check_word: ttzlgGyOQu4L
  421. es:
  422. index:
  423. HealthEduArticlePatient: health_edu_article_patient_test
  424. type:
  425. HealthEduArticlePatient: health_edu_article_patient_test
  426. host: 172.19.103.68
  427. port: 9200
  428. tPort: 9300
  429. clusterName: jkzl