|
@ -0,0 +1,461 @@
|
|
|
server:
|
|
|
port: 8080
|
|
|
|
|
|
spring:
|
|
|
datasource:
|
|
|
wlyy:
|
|
|
driver-class-name: com.mysql.jdbc.Driver
|
|
|
max-active: 50
|
|
|
max-idle: 50 #最大空闲连接
|
|
|
min-idle: 10 #最小空闲连接
|
|
|
validation-query-timeout: 20
|
|
|
log-validation-errors: true
|
|
|
validation-interval: 60000 #避免过度验证,保证验证不超过这个频率——以毫秒为单位。如果一个连接应该被验证,但上次验证未达到指定间隔,将不再次验证。
|
|
|
validation-query: SELECT 1 #SQL 查询, 用来验证从连接池取出的连接, 在将连接返回给调用者之前。 如果指定, 则查询必须是一个SQL SELECT 并且必须返回至少一行记录
|
|
|
test-on-borrow: true #指明是否在从池中取出连接前进行检验, 如果检验失败, 则从池中去除连接并尝试取出另一个。注意: 设置为true 后如果要生效,validationQuery 参数必须设置为非空字符串
|
|
|
test-on-return: true #指明是否在归还到池中前进行检验 注意: 设置为true 后如果要生效validationQuery 参数必须设置为非空字符串
|
|
|
idle-timeout: 30000
|
|
|
connection-test-query: SELECT 1
|
|
|
num-tests-per-eviction-run: 50 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和maxActive
|
|
|
test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
|
|
|
min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
|
|
|
time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
|
|
|
health:
|
|
|
driver-class-name: com.mysql.jdbc.Driver
|
|
|
max-active: 50
|
|
|
max-idle: 50 #最大空闲连接
|
|
|
min-idle: 10 #最小空闲连接
|
|
|
validation-query-timeout: 20
|
|
|
log-validation-errors: true
|
|
|
validation-interval: 60000 #避免过度验证,保证验证不超过这个频率——以毫秒为单位。如果一个连接应该被验证,但上次验证未达到指定间隔,将不再次验证。
|
|
|
validation-query: SELECT 1 #SQL 查询, 用来验证从连接池取出的连接, 在将连接返回给调用者之前。 如果指定, 则查询必须是一个SQL SELECT 并且必须返回至少一行记录
|
|
|
test-on-borrow: true #指明是否在从池中取出连接前进行检验, 如果检验失败, 则从池中去除连接并尝试取出另一个。注意: 设置为true 后如果要生效,validationQuery 参数必须设置为非空字符串
|
|
|
test-on-return: true #指明是否在归还到池中前进行检验 注意: 设置为true 后如果要生效validationQuery 参数必须设置为非空字符串
|
|
|
idle-timeout: 30000
|
|
|
connection-test-query: SELECT 1
|
|
|
num-tests-per-eviction-run: 50 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和maxActive
|
|
|
test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
|
|
|
min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
|
|
|
time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
|
|
|
|
|
|
# REDIS
|
|
|
redis:
|
|
|
database: 0 # Database index used by the connection factory.
|
|
|
password: # Login password of the redis server.
|
|
|
timeout: 0 # Connection timeout in milliseconds.
|
|
|
|
|
|
#sentinel:
|
|
|
# master: # Name of Redis server.
|
|
|
# nodes: # Comma-separated list of host:port pairs.
|
|
|
|
|
|
logging:
|
|
|
level:
|
|
|
root: INFO
|
|
|
|
|
|
redis:
|
|
|
quota:
|
|
|
current:
|
|
|
expire: 12 #实时统计redis 的过期时间 默认是2小时
|
|
|
|
|
|
hibernate:
|
|
|
dialect: org.hibernate.dialect.MySQL5Dialect
|
|
|
show_sql: true
|
|
|
ejb:
|
|
|
naming_strategy: org.hibernate.cfg.ImprovedNamingStrategy
|
|
|
|
|
|
|
|
|
multipart:
|
|
|
enabled: true
|
|
|
max-file-size: 50mb
|
|
|
max-request-size: 50mb
|
|
|
|
|
|
|
|
|
security:
|
|
|
basic:
|
|
|
username: jkzl
|
|
|
password: jkzlehr
|
|
|
|
|
|
---
|
|
|
##测试的配置
|
|
|
spring:
|
|
|
profiles: test
|
|
|
|
|
|
datasource:
|
|
|
wlyy:
|
|
|
url: jdbc:mysql://172.17.110.160/wlyy?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
|
|
|
username: ssgg
|
|
|
password: ssgg
|
|
|
health:
|
|
|
url: jdbc:mysql://172.17.110.160/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
|
|
|
username: ssgg
|
|
|
password: ssgg
|
|
|
|
|
|
redis:
|
|
|
host: 172.19.103.88 # Redis server host.
|
|
|
port: 6379 # Redis server port.
|
|
|
# password: jkzl_ehr
|
|
|
|
|
|
server:
|
|
|
server_url: http://ehr.yihu.com/wlyy/
|
|
|
|
|
|
|
|
|
im:
|
|
|
im_list_get: http://172.19.103.88:3000/
|
|
|
data_base_name: im_new
|
|
|
|
|
|
wechat:
|
|
|
appId: wx1f129f7b51701428
|
|
|
appSecret: 988f005d8309ed1795939e0f042431fb
|
|
|
wechat_token: 27eb3bb24f149a7760cf1bb154b08040
|
|
|
wechat_base_url: http%3a%2f%2fehr.yihu.com%2fwlyy
|
|
|
accId: gh_ffd64560fb21
|
|
|
message:
|
|
|
##医生追加建议提醒 --签约邀请
|
|
|
doctor_invitel_template: uXdBJVbrhKG-WLaCG4s8C4SXSr2kknQ94vKFt-3rIiA
|
|
|
#咨询回复
|
|
|
template_consult_notice: dr4QNyFoRvVsf8uWxXMC1dRyjwnbUuJwJ21vBLhf18
|
|
|
#签约成功
|
|
|
template_sign_success: VYGj8OUKj6FH4i4_nZS2UAHurJxQHx-7_OBPILIdB8s
|
|
|
#签约失败
|
|
|
template_sign_failed: m221Jrkm0UUY00ExTCpQNTB8t_1U_V4LR9Bg8BgH9-o
|
|
|
#健康指导提醒
|
|
|
template_health_notice: 5Nts8lA_at9Cd1JuTK-qDxx95lchpcmUfPTEwYDgXYQ
|
|
|
#解约提醒
|
|
|
template_termination: qZm1NwSueAsbHaOf9DrnLoSj0X5gZuh9W7aDYzLWNds
|
|
|
#预约成功
|
|
|
template_appoint_success: vU5x2tGyk1zUngBrEqMfnFqqMa6M8J98w8k5MCSUYM
|
|
|
#预约取消
|
|
|
template_appoint_failed: r-bVEKgXVyl8O96saoJXlLd7DX1zW7fXA4a0PZHxiQM
|
|
|
#缴费提醒
|
|
|
template_expenses_remind: pZby4Mz3H5angmjGTuvXzo9lwlaVfEiqORwI8soI-5E
|
|
|
#健康教育
|
|
|
template_healthy_article: aO_qqk5nAXaGXhsikPVLNelqzwlrp1LTPfIQ1qRMpxo
|
|
|
#医生变更
|
|
|
template_doctor_change: V5h0F84t972kUzQvWy8qYrgdaYGJVj10pFeFVl19Nb8
|
|
|
#问卷调查
|
|
|
template_doctor_survey: OqQXrb-e43_TJpq_70_K_y6vYJgY5mpjFYY4c5RWFP4
|
|
|
#审核结果通知
|
|
|
template_doctor_audit: OFyLUeBW3r9trWw-i6pbB1sPSTD4J2recCv_mc-gKxA
|
|
|
#服务结果通知
|
|
|
template_doctor_service: i34rq3xFLnpf_VN2Jor9n2YlQqJMM7oXyYvuctriISw
|
|
|
|
|
|
yihu:
|
|
|
yihu_OpenPlatform_url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
|
|
|
yihu_OpenPlatform_appId: 9000276
|
|
|
yihu_OpenPlatform_secret: OKC8BS1KGXTDE9GPP1EO4VYLUXF8DJ7QUP72H613ZXA
|
|
|
|
|
|
fastDFS:
|
|
|
fastdfs_file_url: http://172.19.103.54:80/
|
|
|
|
|
|
images:
|
|
|
path: /var/local/upload/images
|
|
|
renew_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/renew.png
|
|
|
sign_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/familycontract.png
|
|
|
|
|
|
|
|
|
sign:
|
|
|
check_upload: http://172.19.103.85:8011/wlyy_service
|
|
|
|
|
|
|
|
|
quartz:
|
|
|
name: schedulerFactoryBean_test
|
|
|
|
|
|
ylzpay:
|
|
|
onepayApi: http://120.42.37.94:1301/onepay-web/
|
|
|
onepayAppId: 1BGKM1UHM03P7B2CA8C000005626EB0E
|
|
|
onepayAppSecret: 1BGKM1UHM03I7B2CA8C00000AB682E9A
|
|
|
|
|
|
express:
|
|
|
sf_url: http://218.17.248.244:11080/bsp-oisp/sfexpressService
|
|
|
# sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
|
|
|
sf_code: SDDF
|
|
|
sf_check_word: ttzlgGyOQu4L
|
|
|
|
|
|
|
|
|
---
|
|
|
##正式的配置
|
|
|
spring:
|
|
|
profiles: prod
|
|
|
|
|
|
datasource:
|
|
|
wlyy:
|
|
|
url: jdbc:mysql://59.61.92.94:3306/wlyy?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
|
|
|
username: jkzl_root
|
|
|
password: jkzlehr@321465
|
|
|
health:
|
|
|
url: jdbc:mysql://59.61.92.94:3306/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
|
|
|
# username: wlyy
|
|
|
# password: jkzlehr@321465
|
|
|
username: jkzl_root
|
|
|
password: jkzlehr@321465
|
|
|
|
|
|
redis:
|
|
|
host: 120.41.253.95 # Redis server host.
|
|
|
port: 6380 # Redis server port.
|
|
|
password: jkzl_ehr
|
|
|
|
|
|
server:
|
|
|
server_url: http://www.xmtyw.cn/wlyy/
|
|
|
|
|
|
|
|
|
im:
|
|
|
im_list_get: http://120.41.253.95:3000/
|
|
|
data_base_name: im
|
|
|
|
|
|
wechat:
|
|
|
appId: wxad04e9c4c5255acf
|
|
|
appSecret: ae77c48ccf1af5d07069f5153d1ac8d3
|
|
|
wechat_token: 27eb3bb24f149a7760cf1bb154b08040
|
|
|
wechat_base_url: http%3a%2f%2fwww.xmtyw.cn%2fwlyy
|
|
|
accId: gh_ffd64560fb21
|
|
|
message:
|
|
|
##医生追加建议提醒 --签约邀请
|
|
|
doctor_invitel_template: MQn79bx1ofb6hekhmRIuqLU7KjySJQzaBzrimgqVrzA
|
|
|
#咨询回复
|
|
|
template_consult_notice: 0mF_vHj-ILx8EH8DwzmAi7LqzjqYiU9IrSRRmziTZyc
|
|
|
#签约成功
|
|
|
template_sign_success: 0D2vYZVRzFz15p9Y_pkZ1DKutDq8UOsks79FXUKS0tA
|
|
|
#签约失败
|
|
|
template_sign_failed: My2VNERjJt4NXR4Ibh42pdrP6B6ka8rQxZeWinQh99s
|
|
|
#健康指导提醒
|
|
|
template_health_notice: uv31ES_VCmq3tBYtyGmEQvIwU_zh9LDhF3bFpbIUt5g
|
|
|
#解约提醒
|
|
|
template_termination: C0tdXtA_8k-Cy4a1EkzQuI877vqaqAtRkc-e_Gsd7sk
|
|
|
#预约成功
|
|
|
template_appoint_success: FY3Pqa66tHIE1Fv-irbFBPOh5cYP71fkOzfZKH4S-Fo
|
|
|
#预约取消
|
|
|
template_appoint_failed: tldWEb9AN7p_RoHoD8ml0GxWW3V1V_mpEEhp2v6p56s
|
|
|
#缴费提醒
|
|
|
template_expenses_remind: AcrlihhoGbm22A8cdFFDQ4u38ptRw0aiIPf-aGvNxMM
|
|
|
#健康教育
|
|
|
template_healthy_article: a5-ZGf-IUUULsuRNoHWQiBMU6pSYhLgPPqV67SjdLRo
|
|
|
#医生变更
|
|
|
template_doctor_change: dtzSHImbPKfwcrjWlJEjAw3lGlvrLjsobSOE8g4adZA
|
|
|
#问卷调查
|
|
|
template_doctor_survey: 8ZWKJmoJ7VR7Uk4YS7aa0Z94QzCkxsyTW6R4CHhUJII
|
|
|
#审核结果通知
|
|
|
template_doctor_audit: OFyLUeBW3r9trWw-i6pbB1sPSTD4J2recCv_mc-gKxA
|
|
|
#服务结果通知
|
|
|
template_doctor_service: i34rq3xFLnpf_VN2Jor9n2YlQqJMM7oXyYvuctriISw
|
|
|
|
|
|
|
|
|
yihu:
|
|
|
yihu_OpenPlatform_url: http://api.yihu.com.cn/OpenPlatform/cgiBin/1.0/
|
|
|
yihu_OpenPlatform_appId: 9000276
|
|
|
yihu_OpenPlatform_secret: 2JGL19AH3JS55MQY6ZOFJE1JZJ1OF23GWV67MCDQV74
|
|
|
|
|
|
fastDFS:
|
|
|
fastdfs_file_url: http://www.xmtyw.cn/
|
|
|
|
|
|
images:
|
|
|
path: /var/local/upload/images
|
|
|
renew_path: /usr/local/tomcat8/webapps/wlyy/images/renew.png
|
|
|
sign_path: /usr/local/tomcat8/webapps/wlyy/images/familycontract.png
|
|
|
|
|
|
|
|
|
sign:
|
|
|
check_upload: http://59.61.92.90:8072/wlyy_service
|
|
|
|
|
|
|
|
|
|
|
|
quartz:
|
|
|
name: schedulerFactoryBeanWlyy
|
|
|
|
|
|
ylzpay:
|
|
|
# onepayApi: https://xmhealth.ylzpay.com:8080/
|
|
|
onepayApi: http://xmhealth.ylzpay.com:8070/
|
|
|
onepayAppId: 1BLF5SEGN00087165F0A000027362BE5
|
|
|
onepayAppSecret: 1BLF5SCBO01V3E78A8C00000F3A0FFE7
|
|
|
|
|
|
express:
|
|
|
sf_url: http://bsp-ois.sit.sf-express.com:9080/bsp-ois/sfexpressService
|
|
|
# sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
|
|
|
sf_code: BSPdevelop
|
|
|
sf_check_word: j8DzkIFgmlomPt0aLuwU
|
|
|
|
|
|
---
|
|
|
##开发的配置
|
|
|
spring:
|
|
|
profiles: dev
|
|
|
|
|
|
datasource:
|
|
|
wlyy:
|
|
|
url: jdbc:mysql://172.19.103.77/wlyy?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
|
|
|
username: root
|
|
|
password: 123456
|
|
|
health:
|
|
|
url: jdbc:mysql://172.19.103.77/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
|
|
|
username: root
|
|
|
password: 123456
|
|
|
|
|
|
redis:
|
|
|
host: 172.19.103.47 # Redis server host.
|
|
|
port: 6379 # Redis server port.
|
|
|
# password: jkzl_ehr
|
|
|
|
|
|
server:
|
|
|
server_url: http://weixin.xmtyw.cn/wlyy-dev/
|
|
|
|
|
|
|
|
|
im:
|
|
|
im_list_get: http://172.19.103.88:3000/
|
|
|
data_base_name: ichat
|
|
|
|
|
|
wechat:
|
|
|
appId: wxd03f859efdf0873d
|
|
|
appSecret: 2935b54b53a957d9516c920a544f2537
|
|
|
wechat_token: 27eb3bb24f149a7760cf1bb154b08040
|
|
|
wechat_base_url: http%3a%2f%2fweixin.xmtyw.cn%2fwlyy-dev
|
|
|
accId: gh_ffd64560fb21
|
|
|
message:
|
|
|
##医生追加建议提醒 --签约邀请
|
|
|
doctor_invitel_template: TLWrBtNE2kBJaFCdVzDOOnQC8N2TtRY9ZxEzwZXQcR0
|
|
|
#咨询回复
|
|
|
template_consult_notice: qSOW0DBxO3qEBm4ucG0Ial0jxsOyD7_f2TFK5e-mQEc
|
|
|
#签约成功
|
|
|
template_sign_success: hDWV_sknKlhxhOwR5h68OCXbAhRpcgnx9INrT8BybE8
|
|
|
#签约失败
|
|
|
template_sign_failed: ezgttXE7rG4rAboQK2ituG1dKq4PeyCj3LxGJWO_vOA
|
|
|
#健康指导提醒
|
|
|
template_health_notice: 128RCfyCHi22jW8PZzo7vabKMsA3SBv5VeHaDPr2Bhw
|
|
|
#解约提醒
|
|
|
template_termination: LrrzHjnIF67ww5uQUvSiv3_pVKJiIK4ZE3fKrvsT0AE
|
|
|
#预约成功
|
|
|
template_appoint_success: Bo2yqNczSU9zkg4wXoouv9tSeefZ6TziggWL3dTXPYE
|
|
|
#预约取消
|
|
|
template_appoint_failed: pErTBTdweIdrNRf_1Oo62YtQC0aHwPvtLaCzw44JzCQ
|
|
|
#缴费提醒
|
|
|
template_expenses_remind: BkTGJ8S18qZ3DfaptAXnZznAk8RJjx9v93og5vyO0bs
|
|
|
#健康教育
|
|
|
template_healthy_article: LA7erINJ0CSsG2G_ZCrgsDaX3krhsI4qg_NSHEyL_l4
|
|
|
#医生变更
|
|
|
template_doctor_change: TNIDMjduVKgVL4-k71umYLpHROvFB8K6mmm8aZC_EH8
|
|
|
#问卷调查
|
|
|
template_doctor_survey: IjQvzBy0PLeft2kN9mdBhACXPE9I_jyJywJ6B-JRxsY
|
|
|
#审核结果通知
|
|
|
template_doctor_audit: OFyLUeBW3r9trWw-i6pbB1sPSTD4J2recCv_mc-gKxA
|
|
|
#服务结果通知
|
|
|
template_doctor_service: ezr5RlX0nvh7bGU9aVsGDMJbjKDp1uMKP-AGGYXwI5g
|
|
|
|
|
|
yihu:
|
|
|
yihu_OpenPlatform_url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
|
|
|
yihu_OpenPlatform_appId: 9000276
|
|
|
yihu_OpenPlatform_secret: OKC8BS1KGXTDE9GPP1EO4VYLUXF8DJ7QUP72H613ZXA
|
|
|
|
|
|
fastDFS:
|
|
|
fastdfs_file_url: http://172.19.103.54:80/
|
|
|
|
|
|
message:
|
|
|
messageServerUrl: http://10.0.1.3:8080/OpenPlatform/cgiBin/1.0/smsgw/smsSendWS/send
|
|
|
messageAppId: 9000286
|
|
|
messageSecret: NW63YK778QPRUD2A6K5SNF7LYRQ888BWOVD6R4FG2VF
|
|
|
|
|
|
images:
|
|
|
path: /var/local/upload/images
|
|
|
renew_path: /usr/local/apache-tomcat-8.0.26/webapps/wlyy/images/renew.png
|
|
|
sign_path: /usr/local/apache-tomcat-8.0.26/webapps/wlyy/images/familycontract.png
|
|
|
|
|
|
sign:
|
|
|
check_upload: http://172.19.103.87:8011/wlyy_service
|
|
|
|
|
|
|
|
|
quartz:
|
|
|
name: schedulerFactoryBean_dev
|
|
|
|
|
|
ylzpay:
|
|
|
onepayApi: http://120.42.37.94:1301/onepay-web/
|
|
|
onepayAppId: 1BGKM1UHM03P7B2CA8C000005626EB0E
|
|
|
onepayAppSecret: 1BGKM1UHM03I7B2CA8C00000AB682E9A
|
|
|
|
|
|
express:
|
|
|
sf_url: http://218.17.248.244:11080/bsp-oisp/sfexpressService
|
|
|
# sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
|
|
|
sf_code: SDDF
|
|
|
sf_check_word: ttzlgGyOQu4L
|
|
|
|
|
|
---
|
|
|
##开发连测试用这个版本的配置
|
|
|
spring:
|
|
|
profiles: dev_test
|
|
|
|
|
|
datasource:
|
|
|
wlyy:
|
|
|
url: jdbc:mysql://172.19.103.85/wlyy?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
|
|
|
username: linzhou
|
|
|
password: linzhou
|
|
|
health:
|
|
|
url: jdbc:mysql://172.19.103.85/device?useUnicode=true&characterEncoding=utf-8&autoReconnect=true
|
|
|
username: linzhou
|
|
|
password: linzhou
|
|
|
|
|
|
redis:
|
|
|
host: 172.19.103.88 # Redis server host.
|
|
|
port: 6379 # Redis server port.
|
|
|
# password: jkzl_ehr
|
|
|
|
|
|
server:
|
|
|
server_url: http://ehr.yihu.com/wlyy/
|
|
|
|
|
|
|
|
|
im:
|
|
|
im_list_get: http://172.19.103.88:3000/
|
|
|
data_base_name: im_new
|
|
|
|
|
|
wechat:
|
|
|
appId: wx1f129f7b51701428
|
|
|
appSecret: 988f005d8309ed1795939e0f042431fb
|
|
|
wechat_token: 27eb3bb24f149a7760cf1bb154b08040
|
|
|
wechat_base_url: http%3a%2f%2fehr.yihu.com%2fwlyy
|
|
|
accId: gh_ffd64560fb21
|
|
|
message:
|
|
|
##医生追加建议提醒 --签约邀请
|
|
|
doctor_invitel_template: uXdBJVbrhKG-WLaCG4s8C4SXSr2kknQ94vKFt-3rIiA
|
|
|
#咨询回复
|
|
|
template_consult_notice: dr4QNyFoRvVsf8uWxXMC1dRyjwnbUuJwJ21vBLhf18
|
|
|
#签约成功
|
|
|
template_sign_success: VYGj8OUKj6FH4i4_nZS2UAHurJxQHx-7_OBPILIdB8s
|
|
|
#签约失败
|
|
|
template_sign_failed: m221Jrkm0UUY00ExTCpQNTB8t_1U_V4LR9Bg8BgH9-o
|
|
|
#健康指导提醒
|
|
|
template_health_notice: 5Nts8lA_at9Cd1JuTK-qDxx95lchpcmUfPTEwYDgXYQ
|
|
|
#解约提醒
|
|
|
template_termination: qZm1NwSueAsbHaOf9DrnLoSj0X5gZuh9W7aDYzLWNds
|
|
|
#预约成功
|
|
|
template_appoint_success: vU5x2tGyk1zUngBrEqMfnFqqMa6M8J98w8k5MCSUYM
|
|
|
#预约取消
|
|
|
template_appoint_failed: r-bVEKgXVyl8O96saoJXlLd7DX1zW7fXA4a0PZHxiQM
|
|
|
#缴费提醒
|
|
|
template_expenses_remind: pZby4Mz3H5angmjGTuvXzo9lwlaVfEiqORwI8soI-5E
|
|
|
#健康教育
|
|
|
template_healthy_article: aO_qqk5nAXaGXhsikPVLNelqzwlrp1LTPfIQ1qRMpxo
|
|
|
#医生变更
|
|
|
template_doctor_change: V5h0F84t972kUzQvWy8qYrgdaYGJVj10pFeFVl19Nb8
|
|
|
#问卷调查
|
|
|
template_doctor_survey: OqQXrb-e43_TJpq_70_K_y6vYJgY5mpjFYY4c5RWFP4
|
|
|
|
|
|
yihu:
|
|
|
yihu_OpenPlatform_url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
|
|
|
yihu_OpenPlatform_appId: 9000276
|
|
|
yihu_OpenPlatform_secret: OKC8BS1KGXTDE9GPP1EO4VYLUXF8DJ7QUP72H613ZXA
|
|
|
|
|
|
fastDFS:
|
|
|
fastdfs_file_url: http://172.19.103.54:80/
|
|
|
|
|
|
images:
|
|
|
path: /var/local/upload/images
|
|
|
renew_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/renew.png
|
|
|
sign_path: /usr/local/apache-tomcat-8.0.36/webapps/wlyy/images/familycontract.png
|
|
|
|
|
|
|
|
|
sign:
|
|
|
check_upload: http://172.19.103.85:8011/wlyy_service
|
|
|
|
|
|
|
|
|
quartz:
|
|
|
name: schedulerFactoryBean_test_dev
|
|
|
|
|
|
express:
|
|
|
sf_url: http://218.17.248.244:11080/bsp-oisp/sfexpressService
|
|
|
# sf_url: https://bsp-ois.sit.sf-express.com:9443/bsp-ois/sfexpressServic
|
|
|
sf_code: SDDF
|
|
|
sf_check_word: ttzlgGyOQu4L
|