application.yml 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730
  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. putMesType:
  82. #推送到redis消息类型
  83. wechat: wechat
  84. ---
  85. ##测试的配置
  86. spring:
  87. profiles: test
  88. datasource:
  89. wlyy:
  90. url: jdbc:mysql://172.17.110.160/wlyy?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  91. username: ssgg
  92. password: ssgg
  93. health:
  94. url: jdbc:mysql://172.17.110.160/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  95. username: ssgg
  96. password: ssgg
  97. redis:
  98. host: 172.19.103.88 # Redis server host.
  99. port: 6379 # Redis server port.
  100. # password: jkzl_ehr
  101. server:
  102. server_url: http://ehr.yihu.com/wlyy/
  103. im:
  104. im_list_get: http://172.19.103.88:3000/
  105. data_base_name: im_new
  106. wechat:
  107. appId: wx1f129f7b51701428
  108. appSecret: 988f005d8309ed1795939e0f042431fb
  109. wechat_token: 27eb3bb24f149a7760cf1bb154b08040
  110. wechat_base_url: http%3a%2f%2fehr.yihu.com%2fwlyy
  111. accId: gh_ffd64560fb21
  112. message:
  113. ##医生追加建议提醒 --签约邀请
  114. doctor_invitel_template: uXdBJVbrhKG-WLaCG4s8C4SXSr2kknQ94vKFt-3rIiA
  115. #咨询回复
  116. template_consult_notice: dr4QNyFoRvVsf8uWxXMC1dRyjwnbUuJwJ21vBLhf18
  117. #签约成功
  118. template_sign_success: VYGj8OUKj6FH4i4_nZS2UAHurJxQHx-7_OBPILIdB8s
  119. #签约失败
  120. template_sign_failed: m221Jrkm0UUY00ExTCpQNTB8t_1U_V4LR9Bg8BgH9-o
  121. #健康指导提醒
  122. template_health_notice: 5Nts8lA_at9Cd1JuTK-qDxx95lchpcmUfPTEwYDgXYQ
  123. #解约提醒
  124. template_termination: qZm1NwSueAsbHaOf9DrnLoSj0X5gZuh9W7aDYzLWNds
  125. #预约成功
  126. template_appoint_success: vU5x2tGyk1zUngBrEqMfnFqqMa6M8J98w8k5MCSUYM
  127. #预约取消
  128. template_appoint_failed: r-bVEKgXVyl8O96saoJXlLd7DX1zW7fXA4a0PZHxiQM
  129. #缴费提醒
  130. template_expenses_remind: pZby4Mz3H5angmjGTuvXzo9lwlaVfEiqORwI8soI-5E
  131. #健康教育
  132. template_healthy_article: aO_qqk5nAXaGXhsikPVLNelqzwlrp1LTPfIQ1qRMpxo
  133. #医生变更
  134. template_doctor_change: V5h0F84t972kUzQvWy8qYrgdaYGJVj10pFeFVl19Nb8
  135. #问卷调查
  136. template_doctor_survey: OqQXrb-e43_TJpq_70_K_y6vYJgY5mpjFYY4c5RWFP4
  137. #审核结果通知
  138. template_doctor_audit: lCtOgJgL1tBJbAytqN7cn-FgCH_Usg99FENEy2TrC08
  139. #服务结果通知
  140. template_doctor_service: i34rq3xFLnpf_VN2Jor9n2YlQqJMM7oXyYvuctriISw
  141. yihu:
  142. yihu_OpenPlatform_url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
  143. yihu_OpenPlatform_appId: 9000276
  144. yihu_OpenPlatform_secret: OKC8BS1KGXTDE9GPP1EO4VYLUXF8DJ7QUP72H613ZXA
  145. fastDFS:
  146. fastdfs_file_url: http://172.19.103.54:80/
  147. images:
  148. path: /var/local/upload/images
  149. renew_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/renew.png
  150. sign_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/familycontract.png
  151. sign:
  152. check_upload: http://172.19.103.88:8011/wlyy_service
  153. ylzpay:
  154. onepayApi: http://120.42.37.94:1301/onepay-web/
  155. onepayAppId: 1BGKM1UHM03P7B2CA8C000005626EB0E
  156. onepayAppSecret: 1BGKM1UHM03I7B2CA8C00000AB682E9A
  157. express:
  158. sf_url: http://218.17.248.244:11080/bsp-oisp/sfexpressService
  159. # sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
  160. sf_code: SDDF
  161. sf_check_word: ttzlgGyOQu4L
  162. pushMes:
  163. # 1为推送redis,0为推送消息队列
  164. method: 0
  165. # redis队列名称
  166. redis_prescription_title: redisPrescription
  167. es:
  168. index:
  169. HealthEduArticlePatient: health_edu_article_patient_test
  170. type:
  171. health_edu_article_patient: health_edu_article_patient_test
  172. host: 172.19.103.68
  173. port: 9200
  174. tPort: 9300
  175. clusterName: jkzl
  176. ---
  177. ##正式的配置
  178. spring:
  179. profiles: prod
  180. datasource:
  181. wlyy:
  182. url: jdbc:mysql://59.61.92.90:8079/wlyy?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  183. username: wlyy
  184. password: jkzlehr@123
  185. health:
  186. url: jdbc:mysql://59.61.92.90:8079/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  187. username: wlyy
  188. password: jkzlehr@123
  189. redis:
  190. host: 120.41.253.95 # Redis server host.
  191. port: 6380 # Redis server port.
  192. password: jkzl_ehr
  193. server:
  194. server_url: http://www.xmtyw.cn/wlyy/
  195. im:
  196. im_list_get: http://120.41.253.95:3000/
  197. data_base_name: im
  198. wechat:
  199. appId: wxad04e9c4c5255acf
  200. appSecret: ae77c48ccf1af5d07069f5153d1ac8d3
  201. wechat_token: 27eb3bb24f149a7760cf1bb154b08040
  202. wechat_base_url: http%3a%2f%2fwww.xmtyw.cn%2fwlyy
  203. accId: gh_ffd64560fb21
  204. message:
  205. ##医生追加建议提醒 --签约邀请
  206. doctor_invitel_template: MQn79bx1ofb6hekhmRIuqLU7KjySJQzaBzrimgqVrzA
  207. #咨询回复
  208. template_consult_notice: 0mF_vHj-ILx8EH8DwzmAi7LqzjqYiU9IrSRRmziTZyc
  209. #签约成功
  210. template_sign_success: 0D2vYZVRzFz15p9Y_pkZ1DKutDq8UOsks79FXUKS0tA
  211. #签约失败
  212. template_sign_failed: My2VNERjJt4NXR4Ibh42pdrP6B6ka8rQxZeWinQh99s
  213. #健康指导提醒
  214. template_health_notice: uv31ES_VCmq3tBYtyGmEQvIwU_zh9LDhF3bFpbIUt5g
  215. #解约提醒
  216. template_termination: C0tdXtA_8k-Cy4a1EkzQuI877vqaqAtRkc-e_Gsd7sk
  217. #预约成功
  218. template_appoint_success: FY3Pqa66tHIE1Fv-irbFBPOh5cYP71fkOzfZKH4S-Fo
  219. #预约取消
  220. template_appoint_failed: tldWEb9AN7p_RoHoD8ml0GxWW3V1V_mpEEhp2v6p56s
  221. #缴费提醒
  222. template_expenses_remind: AcrlihhoGbm22A8cdFFDQ4u38ptRw0aiIPf-aGvNxMM
  223. #健康教育
  224. template_healthy_article: a5-ZGf-IUUULsuRNoHWQiBMU6pSYhLgPPqV67SjdLRo
  225. #医生变更
  226. template_doctor_change: dtzSHImbPKfwcrjWlJEjAw3lGlvrLjsobSOE8g4adZA
  227. #问卷调查
  228. template_doctor_survey: 8ZWKJmoJ7VR7Uk4YS7aa0Z94QzCkxsyTW6R4CHhUJII
  229. #审核结果通知
  230. template_doctor_audit: egrX5Larpkv8opQW67_hwsZoT0OHwwUpE1v7HeU_Jnw
  231. #服务结果通知
  232. template_doctor_service: xhi1LEudiZwJfZylOHuZNo8EiA73GtSshPQv5XOt9Lk
  233. yihu:
  234. yihu_OpenPlatform_url: http://api.yihu.com.cn/OpenPlatform/cgiBin/1.0/
  235. yihu_OpenPlatform_appId: 9000276
  236. yihu_OpenPlatform_secret: 2JGL19AH3JS55MQY6ZOFJE1JZJ1OF23GWV67MCDQV74
  237. fastDFS:
  238. fastdfs_file_url: http://www.xmtyw.cn/
  239. images:
  240. path: /var/local/upload/images
  241. renew_path: /usr/local/tomcat8/webapps/wlyy/images/renew.png
  242. sign_path: /usr/local/tomcat8/webapps/wlyy/images/familycontract.png
  243. sign:
  244. check_upload: http://59.61.92.90:8072/wlyy_service
  245. ylzpay:
  246. # onepayApi: https://xmhealth.ylzpay.com:8080/
  247. onepayApi: http://xmhealth.ylzpay.com:8070/
  248. onepayAppId: 1BLF5SEGN00087165F0A000027362BE5
  249. onepayAppSecret: 1BLF5SCBO01V3E78A8C00000F3A0FFE7
  250. express:
  251. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  252. # sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
  253. sf_code: sddf
  254. sf_check_word: PqFN0ADkTwnvXArMhqGxVduag44vyDQ7
  255. pushMes:
  256. # 1为推送redis,0为推送消息队列
  257. method: 0
  258. # redis队列名称
  259. redis_prescription_title: redisPrescription
  260. es:
  261. index:
  262. HealthEduArticlePatient: health_edu_article_patient_prod
  263. type:
  264. HealthEduArticlePatient: health_edu_article_patient_prod
  265. host: 172.19.103.68
  266. port: 9200
  267. tPort: 9300
  268. clusterName: jkzl
  269. ---
  270. ##开发的配置
  271. spring:
  272. profiles: dev
  273. datasource:
  274. wlyy:
  275. url: jdbc:mysql://172.19.103.77/wlyy?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  276. username: root
  277. password: 123456
  278. health:
  279. url: jdbc:mysql://172.19.103.77/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  280. username: root
  281. password: 123456
  282. redis:
  283. host: 172.19.103.47 # Redis server host.
  284. port: 6379 # Redis server port.
  285. # password: jkzl_ehr
  286. server:
  287. server_url: http://weixin.xmtyw.cn/wlyy-dev/
  288. im:
  289. im_list_get: http://172.19.103.88:3000/
  290. data_base_name: ichat
  291. wechat:
  292. appId: wxd03f859efdf0873d
  293. appSecret: 2935b54b53a957d9516c920a544f2537
  294. wechat_token: 27eb3bb24f149a7760cf1bb154b08040
  295. wechat_base_url: http%3a%2f%2fweixin.xmtyw.cn%2fwlyy-dev
  296. accId: gh_ffd64560fb21
  297. message:
  298. ##医生追加建议提醒 --签约邀请
  299. doctor_invitel_template: TLWrBtNE2kBJaFCdVzDOOnQC8N2TtRY9ZxEzwZXQcR0
  300. #咨询回复
  301. template_consult_notice: qSOW0DBxO3qEBm4ucG0Ial0jxsOyD7_f2TFK5e-mQEc
  302. #签约成功
  303. template_sign_success: hDWV_sknKlhxhOwR5h68OCXbAhRpcgnx9INrT8BybE8
  304. #签约失败
  305. template_sign_failed: ezgttXE7rG4rAboQK2ituG1dKq4PeyCj3LxGJWO_vOA
  306. #健康指导提醒
  307. template_health_notice: 128RCfyCHi22jW8PZzo7vabKMsA3SBv5VeHaDPr2Bhw
  308. #解约提醒
  309. template_termination: LrrzHjnIF67ww5uQUvSiv3_pVKJiIK4ZE3fKrvsT0AE
  310. #预约成功
  311. template_appoint_success: Bo2yqNczSU9zkg4wXoouv9tSeefZ6TziggWL3dTXPYE
  312. #预约取消
  313. template_appoint_failed: pErTBTdweIdrNRf_1Oo62YtQC0aHwPvtLaCzw44JzCQ
  314. #缴费提醒
  315. template_expenses_remind: BkTGJ8S18qZ3DfaptAXnZznAk8RJjx9v93og5vyO0bs
  316. #健康教育
  317. template_healthy_article: LA7erINJ0CSsG2G_ZCrgsDaX3krhsI4qg_NSHEyL_l4
  318. #医生变更
  319. template_doctor_change: TNIDMjduVKgVL4-k71umYLpHROvFB8K6mmm8aZC_EH8
  320. #问卷调查
  321. template_doctor_survey: IjQvzBy0PLeft2kN9mdBhACXPE9I_jyJywJ6B-JRxsY
  322. #审核结果通知
  323. template_doctor_audit: OFyLUeBW3r9trWw-i6pbB1sPSTD4J2recCv_mc-gKxA
  324. #服务结果通知
  325. template_doctor_service: ezr5RlX0nvh7bGU9aVsGDMJbjKDp1uMKP-AGGYXwI5g
  326. yihu:
  327. yihu_OpenPlatform_url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
  328. yihu_OpenPlatform_appId: 9000276
  329. yihu_OpenPlatform_secret: OKC8BS1KGXTDE9GPP1EO4VYLUXF8DJ7QUP72H613ZXA
  330. fastDFS:
  331. fastdfs_file_url: http://172.19.103.54:80/
  332. message:
  333. messageServerUrl: http://10.0.1.3:8080/OpenPlatform/cgiBin/1.0/smsgw/smsSendWS/send
  334. messageAppId: 9000286
  335. messageSecret: NW63YK778QPRUD2A6K5SNF7LYRQ888BWOVD6R4FG2VF
  336. images:
  337. path: /var/local/upload/images
  338. renew_path: /usr/local/apache-tomcat-8.0.26/webapps/wlyy/images/renew.png
  339. sign_path: /usr/local/apache-tomcat-8.0.26/webapps/wlyy/images/familycontract.png
  340. sign:
  341. check_upload: http://172.19.103.87:8011/wlyy_service
  342. ylzpay:
  343. onepayApi: http://120.42.37.94:1301/onepay-web/
  344. onepayAppId: 1BGKM1UHM03P7B2CA8C000005626EB0E
  345. onepayAppSecret: 1BGKM1UHM03I7B2CA8C00000AB682E9A
  346. express:
  347. sf_url: http://218.17.248.244:11080/bsp-oisp/sfexpressService
  348. # sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
  349. sf_code: SDDF
  350. sf_check_word: ttzlgGyOQu4L
  351. pushMes:
  352. # 1为推送redis,0为推送消息队列
  353. method: 0
  354. # redis队列名称
  355. redis_prescription_title: redisPrescription
  356. es:
  357. index:
  358. HealthEduArticlePatient: health_edu_article_patient_dev
  359. type:
  360. HealthEduArticlePatient: health_edu_article_patient_dev
  361. host: 172.19.103.68
  362. port: 9200
  363. tPort: 9300
  364. clusterName: jkzl
  365. ---
  366. ##开发连测试用这个版本的配置
  367. spring:
  368. profiles: dev_test
  369. datasource:
  370. wlyy:
  371. url: jdbc:mysql://172.19.103.85/wlyy?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  372. username: linzhou
  373. password: linzhou
  374. health:
  375. url: jdbc:mysql://172.19.103.85/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  376. username: linzhou
  377. password: linzhou
  378. redis:
  379. host: 172.19.103.88 # Redis server host.
  380. port: 6379 # Redis server port.
  381. # password: jkzl_ehr
  382. server:
  383. server_url: http://ehr.yihu.com/wlyy/
  384. im:
  385. im_list_get: http://172.19.103.88:3000/
  386. data_base_name: im_new
  387. wechat:
  388. appId: wx1f129f7b51701428
  389. appSecret: 988f005d8309ed1795939e0f042431fb
  390. wechat_token: 27eb3bb24f149a7760cf1bb154b08040
  391. wechat_base_url: http%3a%2f%2fehr.yihu.com%2fwlyy
  392. accId: gh_ffd64560fb21
  393. message:
  394. ##医生追加建议提醒 --签约邀请
  395. doctor_invitel_template: uXdBJVbrhKG-WLaCG4s8C4SXSr2kknQ94vKFt-3rIiA
  396. #咨询回复
  397. template_consult_notice: dr4QNyFoRvVsf8uWxXMC1dRyjwnbUuJwJ21vBLhf18
  398. #签约成功
  399. template_sign_success: VYGj8OUKj6FH4i4_nZS2UAHurJxQHx-7_OBPILIdB8s
  400. #签约失败
  401. template_sign_failed: m221Jrkm0UUY00ExTCpQNTB8t_1U_V4LR9Bg8BgH9-o
  402. #健康指导提醒
  403. template_health_notice: 5Nts8lA_at9Cd1JuTK-qDxx95lchpcmUfPTEwYDgXYQ
  404. #解约提醒
  405. template_termination: qZm1NwSueAsbHaOf9DrnLoSj0X5gZuh9W7aDYzLWNds
  406. #预约成功
  407. template_appoint_success: vU5x2tGyk1zUngBrEqMfnFqqMa6M8J98w8k5MCSUYM
  408. #预约取消
  409. template_appoint_failed: r-bVEKgXVyl8O96saoJXlLd7DX1zW7fXA4a0PZHxiQM
  410. #缴费提醒
  411. template_expenses_remind: pZby4Mz3H5angmjGTuvXzo9lwlaVfEiqORwI8soI-5E
  412. #健康教育
  413. template_healthy_article: aO_qqk5nAXaGXhsikPVLNelqzwlrp1LTPfIQ1qRMpxo
  414. #医生变更
  415. template_doctor_change: V5h0F84t972kUzQvWy8qYrgdaYGJVj10pFeFVl19Nb8
  416. #问卷调查
  417. template_doctor_survey: OqQXrb-e43_TJpq_70_K_y6vYJgY5mpjFYY4c5RWFP4
  418. #审核结果通知
  419. template_doctor_audit: lCtOgJgL1tBJbAytqN7cn-FgCH_Usg99FENEy2TrC08
  420. #服务结果通知
  421. template_doctor_service: i34rq3xFLnpf_VN2Jor9n2YlQqJMM7oXyYvuctriISw
  422. yihu:
  423. yihu_OpenPlatform_url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
  424. yihu_OpenPlatform_appId: 9000276
  425. yihu_OpenPlatform_secret: OKC8BS1KGXTDE9GPP1EO4VYLUXF8DJ7QUP72H613ZXA
  426. fastDFS:
  427. fastdfs_file_url: http://172.19.103.54:80/
  428. images:
  429. path: /var/local/upload/images
  430. renew_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/renew.png
  431. sign_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/familycontract.png
  432. sign:
  433. check_upload: http://172.19.103.88:8011/wlyy_service
  434. express:
  435. sf_url: http://218.17.248.244:11080/bsp-oisp/sfexpressService
  436. # sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
  437. sf_code: SDDF
  438. sf_check_word: ttzlgGyOQu4L
  439. pushMes:
  440. # 1为推送redis,0为推送消息队列
  441. method: 0
  442. # redis队列名称
  443. redis_prescription_title: redisPrescription
  444. es:
  445. index:
  446. HealthEduArticlePatient: health_edu_article_patient_test
  447. type:
  448. HealthEduArticlePatient: health_edu_article_patient_test
  449. host: 172.19.103.68
  450. port: 9200
  451. tPort: 9300
  452. clusterName: jkzl
  453. ---
  454. ##内网环境连测试环境
  455. spring:
  456. profiles: local_test
  457. datasource:
  458. wlyy:
  459. url: jdbc:mysql://172.19.103.85/wlyy?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  460. username: linzhou
  461. password: linzhou
  462. health:
  463. url: jdbc:mysql://172.19.103.85/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  464. username: linzhou
  465. password: linzhou
  466. redis:
  467. host: 172.19.103.88 # Redis server host.
  468. port: 6379 # Redis server port.
  469. # password: jkzl_ehr
  470. server:
  471. server_url: http://ehr.yihu.com/wlyy/
  472. im:
  473. im_list_get: http://172.19.103.88:3000/
  474. data_base_name: im_new
  475. wechat:
  476. appId: wx1f129f7b51701428
  477. appSecret: 988f005d8309ed1795939e0f042431fb
  478. wechat_token: 27eb3bb24f149a7760cf1bb154b08040
  479. wechat_base_url: http%3a%2f%2fehr.yihu.com%2fwlyy
  480. accId: gh_ffd64560fb21
  481. message:
  482. ##医生追加建议提醒 --签约邀请
  483. doctor_invitel_template: uXdBJVbrhKG-WLaCG4s8C4SXSr2kknQ94vKFt-3rIiA
  484. #咨询回复
  485. template_consult_notice: dr4QNyFoRvVsf8uWxXMC1dRyjwnbUuJwJ21vBLhf18
  486. #签约成功
  487. template_sign_success: VYGj8OUKj6FH4i4_nZS2UAHurJxQHx-7_OBPILIdB8s
  488. #签约失败
  489. template_sign_failed: m221Jrkm0UUY00ExTCpQNTB8t_1U_V4LR9Bg8BgH9-o
  490. #健康指导提醒
  491. template_health_notice: 5Nts8lA_at9Cd1JuTK-qDxx95lchpcmUfPTEwYDgXYQ
  492. #解约提醒
  493. template_termination: qZm1NwSueAsbHaOf9DrnLoSj0X5gZuh9W7aDYzLWNds
  494. #预约成功
  495. template_appoint_success: vU5x2tGyk1zUngBrEqMfnFqqMa6M8J98w8k5MCSUYM
  496. #预约取消
  497. template_appoint_failed: r-bVEKgXVyl8O96saoJXlLd7DX1zW7fXA4a0PZHxiQM
  498. #缴费提醒
  499. template_expenses_remind: pZby4Mz3H5angmjGTuvXzo9lwlaVfEiqORwI8soI-5E
  500. #健康教育
  501. template_healthy_article: aO_qqk5nAXaGXhsikPVLNelqzwlrp1LTPfIQ1qRMpxo
  502. #医生变更
  503. template_doctor_change: V5h0F84t972kUzQvWy8qYrgdaYGJVj10pFeFVl19Nb8
  504. #问卷调查
  505. template_doctor_survey: OqQXrb-e43_TJpq_70_K_y6vYJgY5mpjFYY4c5RWFP4
  506. #审核结果通知
  507. template_doctor_audit: lCtOgJgL1tBJbAytqN7cn-FgCH_Usg99FENEy2TrC08
  508. #服务结果通知
  509. template_doctor_service: i34rq3xFLnpf_VN2Jor9n2YlQqJMM7oXyYvuctriISw
  510. yihu:
  511. yihu_OpenPlatform_url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
  512. yihu_OpenPlatform_appId: 9000276
  513. yihu_OpenPlatform_secret: OKC8BS1KGXTDE9GPP1EO4VYLUXF8DJ7QUP72H613ZXA
  514. fastDFS:
  515. fastdfs_file_url: http://172.19.103.54:80/
  516. images:
  517. path: /var/local/upload/images
  518. renew_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/renew.png
  519. sign_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/familycontract.png
  520. sign:
  521. check_upload: http://172.19.103.88:8011/wlyy_service
  522. express:
  523. sf_url: http://218.17.248.244:11080/bsp-oisp/sfexpressService
  524. # sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
  525. sf_code: SDDF
  526. sf_check_word: ttzlgGyOQu4L
  527. pushMes:
  528. # 1为推送redis,0为推送消息队列
  529. method: 1
  530. # redis队列名称
  531. redis_prescription_title: redisPrescription
  532. ---
  533. ##内网环境
  534. spring:
  535. profiles: local
  536. datasource:
  537. wlyy:
  538. url: jdbc:mysql://172.19.103.85/wlyy?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  539. username: linzhou
  540. password: linzhou
  541. health:
  542. url: jdbc:mysql://172.19.103.85/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
  543. username: linzhou
  544. password: linzhou
  545. redis:
  546. host: 172.19.103.88 # Redis server host.
  547. port: 6379 # Redis server port.
  548. # password: jkzl_ehr
  549. server:
  550. server_url: http://ehr.yihu.com/wlyy/
  551. im:
  552. im_list_get: http://172.19.103.88:3000/
  553. data_base_name: im_new
  554. wechat:
  555. appId: wx1f129f7b51701428
  556. appSecret: 988f005d8309ed1795939e0f042431fb
  557. wechat_token: 27eb3bb24f149a7760cf1bb154b08040
  558. wechat_base_url: http%3a%2f%2fehr.yihu.com%2fwlyy
  559. accId: gh_ffd64560fb21
  560. message:
  561. ##医生追加建议提醒 --签约邀请
  562. doctor_invitel_template: uXdBJVbrhKG-WLaCG4s8C4SXSr2kknQ94vKFt-3rIiA
  563. #咨询回复
  564. template_consult_notice: dr4QNyFoRvVsf8uWxXMC1dRyjwnbUuJwJ21vBLhf18
  565. #签约成功
  566. template_sign_success: VYGj8OUKj6FH4i4_nZS2UAHurJxQHx-7_OBPILIdB8s
  567. #签约失败
  568. template_sign_failed: m221Jrkm0UUY00ExTCpQNTB8t_1U_V4LR9Bg8BgH9-o
  569. #健康指导提醒
  570. template_health_notice: 5Nts8lA_at9Cd1JuTK-qDxx95lchpcmUfPTEwYDgXYQ
  571. #解约提醒
  572. template_termination: qZm1NwSueAsbHaOf9DrnLoSj0X5gZuh9W7aDYzLWNds
  573. #预约成功
  574. template_appoint_success: vU5x2tGyk1zUngBrEqMfnFqqMa6M8J98w8k5MCSUYM
  575. #预约取消
  576. template_appoint_failed: r-bVEKgXVyl8O96saoJXlLd7DX1zW7fXA4a0PZHxiQM
  577. #缴费提醒
  578. template_expenses_remind: pZby4Mz3H5angmjGTuvXzo9lwlaVfEiqORwI8soI-5E
  579. #健康教育
  580. template_healthy_article: aO_qqk5nAXaGXhsikPVLNelqzwlrp1LTPfIQ1qRMpxo
  581. #医生变更
  582. template_doctor_change: V5h0F84t972kUzQvWy8qYrgdaYGJVj10pFeFVl19Nb8
  583. #问卷调查
  584. template_doctor_survey: OqQXrb-e43_TJpq_70_K_y6vYJgY5mpjFYY4c5RWFP4
  585. #审核结果通知
  586. template_doctor_audit: lCtOgJgL1tBJbAytqN7cn-FgCH_Usg99FENEy2TrC08
  587. #服务结果通知
  588. template_doctor_service: i34rq3xFLnpf_VN2Jor9n2YlQqJMM7oXyYvuctriISw
  589. yihu:
  590. yihu_OpenPlatform_url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
  591. yihu_OpenPlatform_appId: 9000276
  592. yihu_OpenPlatform_secret: OKC8BS1KGXTDE9GPP1EO4VYLUXF8DJ7QUP72H613ZXA
  593. fastDFS:
  594. fastdfs_file_url: http://172.19.103.54:80/
  595. images:
  596. path: /var/local/upload/images
  597. renew_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/renew.png
  598. sign_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/familycontract.png
  599. sign:
  600. check_upload: http://172.19.103.88:8011/wlyy_service
  601. express:
  602. sf_url: http://218.17.248.244:11080/bsp-oisp/sfexpressService
  603. # sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
  604. sf_code: SDDF
  605. sf_check_word: ttzlgGyOQu4L
  606. pushMes:
  607. # 1为推送redis,0为推送消息队列
  608. method: 1
  609. # redis队列名称
  610. redis_prescription_title: redisPrescription
  611. es:
  612. index:
  613. HealthEduArticlePatient: health_edu_article_patient_test
  614. type:
  615. HealthEduArticlePatient: health_edu_article_patient_test
  616. host: 172.19.103.68
  617. port: 9200
  618. tPort: 9300
  619. clusterName: jkzl