123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- #The region code, where application deployed
- deploy:
- region: 3502
- #EHR platform user default password
- default:
- password: 123456
- redis-key-schema:
- std:
- version-table-prefix: std_cda_versions
- version-name: name
- data-set-table-prefix: std_data_set_
- data-set-code: code
- data-set-name: name
- meta-data-table-prefix: std_meta_data_
- meta-data-dict-id: dict_id
- meta-data-type: type
- dict-entry-table-prefix: std_dictionary_entry_
- dict-entry-value: value
- org:
- table: organizations
- name: name
- # 提取器参数,从数据集中提取摘要、事件时间与身份标识
- extractor:
- # 事件提取参数
- # 门诊从“门诊摘要”与“挂号”数据集提取事件
- # 住院从“病人摘要”,“入院记录”与“病案首页”提取事件
- # 值用于生成事件摘要
- event:
- data-sets:
- - HDSC01_01: Clinic
- - HDSC01_02: Clinic
- - HDSC02_01: Resident
- - HDSC02_02: Resident
- - HDSC02_09: Resident
- meta-data:
- - HDSD00_01_457_D # 挂号时间
- - HDSD00_01_185_D # 出院时间
- # 身份提取参数,从人口学处提取
- identity:
- data-sets:
- - HDSA00_01
- meta-data:
- id-card-no: HDSA00_01_017_S # 身份标识
- id-card-type: HDSA00_01_016_S # 身份类型
- # 卡提取参数
- card:
- data-sets:
- - HDSC01_01: 门诊-病人摘要
- - HDSC01_02: 门诊-挂号
- - HDSC02_01: 住院-病人摘要
- - HDSC02_02: 住院-首页
- meta-data:
- - CARD_NO
- - CARD_TYPE
-
- #Application error definition, this file define common errors,
- #if the error is used only in your application, please define it in your application configuration file.
- ehr.common.invalid.parameter: 参数解析错误
- ehr.common.query.not.found: 不存在该对象
- ehr.common.repeat.code: 代码重复
- #Application port, since 10100, 10 per step. Update max port if new application created. Current max: 10190
- svr-adaption.server.port: 10150
- svr-app.server.port: 10160
- svr-dict.server.port: 10050
- svr-esb.server.port: 10130
- svr-geography.server.port: 10090
- svr-health-profile.server.port: 9009
- svr-organization.server.port: 10070
- svr-pack-mgr.server.port: 10140
- svr-pack-resolve.server.port: 10170
- svr-patient.server.port: 10100
- svr-security.server.port: 10110
- svr-special-dict.server.port: 10180
- svr-standard.server.port: 10040
- svr-user.server.port: 10120
- ag-ehr-platform.server.port: 443
- ag-admin.server.port: 10000
- svr-family.server.port: 10190
- #Application acuator
- endpoints:
- restart:
- enabled: true
- shutdown:
- enabled: true
- health:
- sensitive: false
- spring:
- #JPA config for MySQL
- jpa:
- database-platform: org.hibernate.dialect.MySQL5Dialect
- hibernate.dialect: org.hibernate.dialect.MySQL5Dialect
- show-sql: true
- #block the inet address of nic, virtual card and so on. Need spring version: Brixton M5
- cloud:
- inetutils:
- ignoredInterfaces:
- - docker0
- - veth.*
- - vmnet.*
- eureka:
- client:
- serviceUrl:
- defaultZone: http://${eureka-server-ip}/eureka/
- ---
- spring:
- profiles: dev
- #If true, each application use ip to register it in eureka, eureka host is defined in "eureka-server-ip".
- #else the server must have host map.
- eureka:
- instance:
- prefer-ip-address: false
- eureka-server-ip: 192.168.1.220:8761
- ---
- spring:
- profiles: test
- #If true, each application use ip to register it in eureka, eureka host is defined in "eureka-server-ip".
- #else the server must have host map.
- eureka:
- instance:
- prefer-ip-address: false
- eureka-server-ip: 172.19.103.73:8761
- ---
- spring:
- profiles: prod
- #If true, each application use ip to register it in eureka, eureka host is defined in "eureka-server-ip".
- #else the server must have host map.
- eureka:
- instance:
- prefer-ip-address: false
- eureka-server-ip: 11.1.2.21:8761
|