amount;
18 | }
19 |
--------------------------------------------------------------------------------
/HIS-master/HIS-common/target/maven-archiver/pom.properties:
--------------------------------------------------------------------------------
1 | #Created by Apache Maven 3.6.0
2 | version=1.0-SNAPSHOT
3 | groupId=com.neu.his
4 | artifactId=HIS-common
5 |
--------------------------------------------------------------------------------
/HIS-master/HIS-demo/src/test/java/com/neu/his/bms/AppTest.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.bms;
2 |
3 | import static org.junit.Assert.assertTrue;
4 |
5 | import org.junit.Test;
6 |
7 | /**
8 | * Unit test for simple App.
9 | */
10 | public class AppTest
11 | {
12 | /**
13 | * Rigorous Test :-)
14 | */
15 | @Test
16 | public void shouldAnswerWithTrue()
17 | {
18 | assertTrue( true );
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/HIS-master/HIS-demo/target/maven-archiver/pom.properties:
--------------------------------------------------------------------------------
1 | #Created by Apache Maven 3.6.0
2 | version=1.0-SNAPSHOT
3 | groupId=com.neu.his
4 | artifactId=HIS-demo
5 |
--------------------------------------------------------------------------------
/HIS-master/HIS-demo/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/HIS-master/HIS-demo/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
--------------------------------------------------------------------------------
/HIS-master/HIS-demo/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst:
--------------------------------------------------------------------------------
1 | F:\HIS\HIS\HIS-master\HIS-demo\src\test\java\com\neu\his\bms\AppTest.java
2 |
--------------------------------------------------------------------------------
/HIS-master/HIS-demo/target/surefire-reports/com.neu.his.bms.AppTest.txt:
--------------------------------------------------------------------------------
1 | -------------------------------------------------------------------------------
2 | Test set: com.neu.his.bms.AppTest
3 | -------------------------------------------------------------------------------
4 | Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.06 s - in com.neu.his.bms.AppTest
5 |
--------------------------------------------------------------------------------
/HIS-master/HIS-mbg/src/test/java/com/neu/his/bms/AppTest.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.bms;
2 |
3 | import static org.junit.Assert.assertTrue;
4 |
5 | import org.junit.Test;
6 |
7 | /**
8 | * Unit test for simple App.
9 | */
10 | public class AppTest
11 | {
12 | /**
13 | * Rigorous Test :-)
14 | */
15 | @Test
16 | public void shouldAnswerWithTrue()
17 | {
18 | assertTrue( true );
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/HIS-master/HIS-mbg/target/classes/generator.properties:
--------------------------------------------------------------------------------
1 | jdbc.driverClass=com.mysql.jdbc.Driver
2 | jdbc.connectionURL=jdbc:mysql://localhost:3306/his?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
3 | jdbc.userId=root
4 | jdbc.password=123456
--------------------------------------------------------------------------------
/HIS-master/HIS-mbg/target/maven-archiver/pom.properties:
--------------------------------------------------------------------------------
1 | #Created by Apache Maven 3.6.0
2 | version=1.0-SNAPSHOT
3 | groupId=com.neu.his
4 | artifactId=HIS-mbg
5 |
--------------------------------------------------------------------------------
/HIS-master/HIS-mbg/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst:
--------------------------------------------------------------------------------
1 | com\neu\his\bms\AppTest.class
2 |
--------------------------------------------------------------------------------
/HIS-master/HIS-mbg/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst:
--------------------------------------------------------------------------------
1 | F:\HIS\HIS\HIS-master\HIS-mbg\src\test\java\com\neu\his\bms\AppTest.java
2 |
--------------------------------------------------------------------------------
/HIS-master/HIS-mbg/target/surefire-reports/com.neu.his.bms.AppTest.txt:
--------------------------------------------------------------------------------
1 | -------------------------------------------------------------------------------
2 | Test set: com.neu.his.bms.AppTest
3 | -------------------------------------------------------------------------------
4 | Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.084 s - in com.neu.his.bms.AppTest
5 |
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-bms-service/src/main/java/com/neu/his/bms/service/DemoService.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.bms.service;
2 |
3 | import org.springframework.stereotype.Service;
4 |
5 |
6 | public interface DemoService {
7 |
8 | public void test();
9 | }
10 |
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-bms-service/src/main/java/com/neu/his/bms/service/impl/DemoServiceImpl.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.bms.service.impl;
2 |
3 | import com.neu.his.bms.service.DemoService;
4 | import org.springframework.stereotype.Service;
5 |
6 |
7 | @Service
8 | public class DemoServiceImpl implements DemoService {
9 |
10 |
11 | @Override
12 | public void test(){
13 | System.out.println("zzz");
14 | }
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-bms-service/target/maven-archiver/pom.properties:
--------------------------------------------------------------------------------
1 | #Created by Apache Maven 3.6.0
2 | version=1.0-SNAPSHOT
3 | groupId=com.neu.his
4 | artifactId=HIS-bms-service
5 |
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-dms-service/src/main/java/com/neu/his/dms/service/DmsFeeRabbitMQService.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.dms.service;
2 |
3 | public interface DmsFeeRabbitMQService {
4 |
5 | /**
6 | * 描述:草药处方超时未缴费处理(设置状态为4已过期)
7 | * author: ma
8 | */
9 | int herbalOutOfTime(Long prescriptionId);
10 |
11 | /**
12 | * 描述:成药处方超时未缴费处理(设置状态为4已过期)
13 | *
author: ma
14 | */
15 | int medicineOutOfTime(Long prescriptionId);
16 |
17 | /**
18 | * 描述:非药品超时未缴费处理(设置状态为6已过期)
19 | *
author: ma
20 | */
21 | int nonDrugOutOfTime(Long prescriptionId);
22 |
23 | }
24 |
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-dms-service/src/main/java/com/neu/his/dms/service/OssService.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.dms.service;
2 |
3 |
4 |
5 | import com.neu.his.common.dto.oss.OssCallbackResult;
6 | import com.neu.his.common.dto.oss.OssPolicyResult;
7 |
8 | import javax.servlet.http.HttpServletRequest;
9 |
10 | /**
11 | * oss上传管理Service
12 | */
13 | public interface OssService {
14 | OssPolicyResult policy();
15 | OssCallbackResult callback(HttpServletRequest request);
16 | }
17 |
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-dms-service/target/maven-archiver/pom.properties:
--------------------------------------------------------------------------------
1 | #Created by Apache Maven 3.6.0
2 | version=1.0-SNAPSHOT
3 | groupId=com.neu.his
4 | artifactId=HIS-dms-service
5 |
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-dms-service/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/HIS-master/HIS-service/HIS-dms-service/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-pms-service/target/maven-archiver/pom.properties:
--------------------------------------------------------------------------------
1 | #Created by Apache Maven 3.6.0
2 | version=1.0-SNAPSHOT
3 | groupId=com.neu.his
4 | artifactId=HIS-pms-service
5 |
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-pms-service/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/HIS-master/HIS-service/HIS-pms-service/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-pms-service/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst:
--------------------------------------------------------------------------------
1 | F:\HIS\HIS\HIS-master\HIS-service\HIS-pms-service\src\main\java\com\neu\his\pms\service\PmsPatientService.java
2 | F:\HIS\HIS\HIS-master\HIS-service\HIS-pms-service\src\main\java\com\neu\his\pms\service\impl\PmsPatientServiceImpl.java
3 |
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-sms-service/target/maven-archiver/pom.properties:
--------------------------------------------------------------------------------
1 | #Created by Apache Maven 3.6.0
2 | version=1.0-SNAPSHOT
3 | groupId=com.neu.his
4 | artifactId=HIS-sms-service
5 |
--------------------------------------------------------------------------------
/HIS-master/HIS-service/HIS-sms-service/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/HIS-master/HIS-service/HIS-sms-service/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
--------------------------------------------------------------------------------
/HIS-web/.editorconfig:
--------------------------------------------------------------------------------
1 | # https://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | charset = utf-8
6 | indent_style = space
7 | indent_size = 2
8 | end_of_line = lf
9 | insert_final_newline = true
10 | trim_trailing_whitespace = true
11 |
12 | [*.md]
13 | insert_final_newline = false
14 | trim_trailing_whitespace = false
15 |
--------------------------------------------------------------------------------
/HIS-web/.env.development:
--------------------------------------------------------------------------------
1 | # just a flag
2 | ENV = 'development'
3 |
4 | # base api
5 | VUE_APP_BASE_API = '/dev-api'
6 |
7 | # vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable,
8 | # to control whether the babel-plugin-dynamic-import-node plugin is enabled.
9 | # It only does one thing by converting all import() to require().
10 | # This configuration can significantly increase the speed of hot updates,
11 | # when you have a large number of pages.
12 | # Detail: https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/babel-preset-app/index.js
13 |
14 | VUE_CLI_BABEL_TRANSPILE_MODULES = true
15 |
--------------------------------------------------------------------------------
/HIS-web/.env.production:
--------------------------------------------------------------------------------
1 | # just a flag
2 | ENV = 'production'
3 |
4 | # base api
5 | VUE_APP_BASE_API = '/prod-api'
6 |
7 |
--------------------------------------------------------------------------------
/HIS-web/.env.staging:
--------------------------------------------------------------------------------
1 | NODE_ENV = production
2 |
3 | # just a flag
4 | ENV = 'staging'
5 |
6 | # base api
7 | VUE_APP_BASE_API = '/stage-api'
8 |
9 |
--------------------------------------------------------------------------------
/HIS-web/.eslintignore:
--------------------------------------------------------------------------------
1 | build/*.js
2 | src/assets
3 | public
4 | dist
5 |
--------------------------------------------------------------------------------
/HIS-web/.idea/HIS-web.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/HIS-web/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/HIS-web/.idea/inspectionProfiles/Project_Default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/HIS-web/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/HIS-web/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/HIS-web/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/HIS-web/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js: 10
3 | script: npm run test
4 | notifications:
5 | email: false
6 |
--------------------------------------------------------------------------------
/HIS-web/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/app'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/HIS-web/plop-templates/component/index.hbs:
--------------------------------------------------------------------------------
1 | {{#if template}}
2 |
3 |
4 |
5 | {{/if}}
6 |
7 | {{#if script}}
8 |
20 | {{/if}}
21 |
22 | {{#if style}}
23 |
26 | {{/if}}
27 |
--------------------------------------------------------------------------------
/HIS-web/plop-templates/utils.js:
--------------------------------------------------------------------------------
1 | exports.notEmpty = name => {
2 | return v => {
3 | if (!v || v.trim === '') {
4 | return `${name} is required`
5 | } else {
6 | return true
7 | }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/HIS-web/plop-templates/view/index.hbs:
--------------------------------------------------------------------------------
1 | {{#if template}}
2 |
3 |
4 |
5 | {{/if}}
6 |
7 | {{#if script}}
8 |
20 | {{/if}}
21 |
22 | {{#if style}}
23 |
26 | {{/if}}
27 |
--------------------------------------------------------------------------------
/HIS-web/plopfile.js:
--------------------------------------------------------------------------------
1 | const viewGenerator = require('./plop-templates/view/prompt')
2 | const componentGenerator = require('./plop-templates/component/prompt')
3 |
4 | module.exports = function(plop) {
5 | plop.setGenerator('view', viewGenerator)
6 | plop.setGenerator('component', componentGenerator)
7 | }
8 |
--------------------------------------------------------------------------------
/HIS-web/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | autoprefixer: {}
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/HIS-web/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/HIS-web/public/favicon.ico
--------------------------------------------------------------------------------
/HIS-web/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | <%= webpackConfig.name %>
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/HIS-web/tests/unit/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | env: {
3 | jest: true
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/document/picture/APP-主页.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/APP-主页.png
--------------------------------------------------------------------------------
/document/picture/APP-我的.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/APP-我的.png
--------------------------------------------------------------------------------
/document/picture/APP-挂号-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/APP-挂号-1.png
--------------------------------------------------------------------------------
/document/picture/APP-挂号-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/APP-挂号-2.png
--------------------------------------------------------------------------------
/document/picture/APP-检查检验结果.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/APP-检查检验结果.png
--------------------------------------------------------------------------------
/document/picture/APP-缴费信息.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/APP-缴费信息.png
--------------------------------------------------------------------------------
/document/picture/Hystrix-dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/Hystrix-dashboard.png
--------------------------------------------------------------------------------
/document/picture/PC-主页.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-主页.png
--------------------------------------------------------------------------------
/document/picture/PC-医技医生工作台-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-医技医生工作台-1.png
--------------------------------------------------------------------------------
/document/picture/PC-医技医生工作台-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-医技医生工作台-2.png
--------------------------------------------------------------------------------
/document/picture/PC-对账.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-对账.png
--------------------------------------------------------------------------------
/document/picture/PC-常用项管理.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-常用项管理.png
--------------------------------------------------------------------------------
/document/picture/PC-挂号.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-挂号.png
--------------------------------------------------------------------------------
/document/picture/PC-排班-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-排班-1.png
--------------------------------------------------------------------------------
/document/picture/PC-排班-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-排班-2.png
--------------------------------------------------------------------------------
/document/picture/PC-日结-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-日结-1.png
--------------------------------------------------------------------------------
/document/picture/PC-病历模板管理.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-病历模板管理.png
--------------------------------------------------------------------------------
/document/picture/PC-科室管理.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-科室管理.png
--------------------------------------------------------------------------------
/document/picture/PC-药房医生工作台-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-药房医生工作台-1.png
--------------------------------------------------------------------------------
/document/picture/PC-药房医生工作台-2 (2).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-药房医生工作台-2 (2).png
--------------------------------------------------------------------------------
/document/picture/PC-药房医生工作台-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-药房医生工作台-2.png
--------------------------------------------------------------------------------
/document/picture/PC-角色权限管理.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-角色权限管理.png
--------------------------------------------------------------------------------
/document/picture/PC-诊断管理.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-诊断管理.png
--------------------------------------------------------------------------------
/document/picture/PC-门诊医生工作台-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-门诊医生工作台-1.png
--------------------------------------------------------------------------------
/document/picture/PC-门诊医生工作台-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-门诊医生工作台-2.png
--------------------------------------------------------------------------------
/document/picture/PC-门诊医生工作台-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-门诊医生工作台-3.png
--------------------------------------------------------------------------------
/document/picture/PC-非药品模板管理.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/PC-非药品模板管理.png
--------------------------------------------------------------------------------
/document/picture/ZinKin链路追踪-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/ZinKin链路追踪-2.png
--------------------------------------------------------------------------------
/document/picture/ZinKin链路追踪.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/ZinKin链路追踪.png
--------------------------------------------------------------------------------
/document/picture/admin-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/admin-1.png
--------------------------------------------------------------------------------
/document/picture/admin-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/admin-2.png
--------------------------------------------------------------------------------
/document/picture/elasticsearch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/elasticsearch.png
--------------------------------------------------------------------------------
/document/picture/his-document.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/his-document.png
--------------------------------------------------------------------------------
/document/picture/业务流程图.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/业务流程图.png
--------------------------------------------------------------------------------
/document/picture/分布式日志收集.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/分布式日志收集.png
--------------------------------------------------------------------------------
/document/picture/收银员工作台.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/收银员工作台.png
--------------------------------------------------------------------------------
/document/picture/数据库架构.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/数据库架构.png
--------------------------------------------------------------------------------
/document/picture/架构图.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/架构图.png
--------------------------------------------------------------------------------
/document/picture/需求思维图.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/document/picture/需求思维图.png
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__antlr_antlr_2_7_7.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__aopalliance_aopalliance_1_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__cn_hutool_hutool_all_4_5_7.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_alibaba_druid_1_1_13.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_aliyun_oss_aliyun_sdk_oss_2_5_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_esotericsoftware_minlog_1_3_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_fasterxml_classmate_1_3_4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_github_jsqlparser_jsqlparser_1_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_google_code_findbugs_jsr305_3_0_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_google_code_gson_gson_2_8_5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_google_guava_guava_16_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_google_guava_guava_18_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_google_inject_guice_4_1_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_googlecode_javaewah_JavaEWAH_1_1_6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_jayway_jsonpath_json_path_2_4_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_jcraft_jsch_0_1_54.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_jcraft_jzlib_1_1_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_netflix_eureka_eureka_core_1_9_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_netflix_ribbon_ribbon_2_2_5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_netflix_ribbon_ribbon_core_2_2_5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_netflix_servo_servo_core_0_12_21.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_netflix_zuul_zuul_core_1_3_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_rabbitmq_amqp_client_5_1_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_sun_jersey_jersey_client_1_19_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_sun_jersey_jersey_core_1_19_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_sun_jersey_jersey_server_1_19_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__com_zaxxer_HikariCP_2_7_9.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__commons_codec_commons_codec_1_11.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__commons_io_commons_io_2_4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__commons_jxpath_commons_jxpath_1_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__commons_lang_commons_lang_2_5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__commons_lang_commons_lang_2_6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_github_openfeign_feign_core_9_5_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_jsonwebtoken_jjwt_0_9_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_prometheus_simpleclient_0_4_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_reactivex_rxjava_1_3_8.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_reactivex_rxnetty_0_4_9.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_reactivex_rxnetty_servo_0_4_9.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_springfox_springfox_core_2_7_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_springfox_springfox_spi_2_7_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_swagger_swagger_models_1_5_13.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_zipkin_brave_brave_5_1_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_zipkin_java_zipkin_2_10_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_zipkin_java_zipkin_ui_2_10_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_zipkin_zipkin2_zipkin_2_10_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__io_zipkin_zipkin2_zipkin_2_9_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__javax_inject_javax_inject_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__javax_ws_rs_jsr311_api_1_1_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__javax_xml_stream_stax_api_1_0_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__joda_time_joda_time_2_9_9.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__junit_junit_4_12.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__net_bytebuddy_byte_buddy_1_7_11.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__net_minidev_accessors_smart_1_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__net_minidev_json_smart_2_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__net_sf_ezmorph_ezmorph_1_0_6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__net_sf_json_lib_json_lib_jdk15_2_4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_antlr_antlr_runtime_3_4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_antlr_stringtemplate_3_2_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_7.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_apache_commons_commons_math_2_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_aspectj_aspectjrt_1_8_13.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_aspectj_aspectjweaver_1_8_13.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_assertj_assertj_core_3_9_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_codehaus_jettison_jettison_1_3_7.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_codehaus_woodstox_stax2_api_3_1_4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_freemarker_freemarker_2_3_28.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_glassfish_javax_el_3_0_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_hamcrest_hamcrest_library_1_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_javassist_javassist_3_21_0_GA.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_jdom_jdom_1_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_jolokia_jolokia_core_1_5_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_jsoup_jsoup_1_11_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_latencyutils_LatencyUtils_2_0_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_mockito_mockito_core_2_15_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_mybatis_mybatis_3_4_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_mybatis_mybatis_3_4_6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_mybatis_mybatis_spring_1_3_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_objenesis_objenesis_2_6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_ow2_asm_asm_5_0_4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_projectlombok_lombok_1_16_22.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_reflections_reflections_0_9_11.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_skyscreamer_jsonassert_1_5_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_25.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_webjars_d3js_3_4_11.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_webjars_jquery_2_1_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_xmlunit_xmlunit_core_2_5_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__org_yaml_snakeyaml_1_19.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__stax_stax_api_1_0_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__xerces_xercesImpl_2_11_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__xml_apis_xml_apis_1_4_01.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__xmlpull_xmlpull_1_1_3_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/libraries/Maven__xpp3_xpp3_min_1_1_4c.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/his-cloud/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-app/src/main/java/com/neu/his/cloud/api/app/common/IErrorCode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.app.common;
2 |
3 | /**
4 | * 封装API的错误码
5 | */
6 | public interface IErrorCode {
7 | long getCode();
8 |
9 | String getMessage();
10 | }
11 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-app/src/main/java/com/neu/his/cloud/api/app/config/RestTempleteConfiger.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.app.config;
2 |
3 | import org.springframework.cloud.client.loadbalancer.LoadBalanced;
4 | import org.springframework.context.annotation.Bean;
5 | import org.springframework.context.annotation.Configuration;
6 | import org.springframework.web.client.RestTemplate;
7 |
8 | @Configuration
9 | public class RestTempleteConfiger {
10 |
11 | @Bean
12 | @LoadBalanced
13 | public RestTemplate restTemplate(){
14 | return new RestTemplate();
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-app/src/main/java/com/neu/his/cloud/api/app/dto/app/AppCheckTestResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.app.dto.app;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | @Setter
9 | @Getter
10 | @ToString
11 | public class AppCheckTestResult {
12 |
13 | @ApiModelProperty(value = "检查部位")
14 | String checkParts;
15 | @ApiModelProperty(value = "结果")
16 | String checkResult;
17 | @ApiModelProperty(value = "结果图片链接")
18 | String resultImgUrlList;
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-app/src/main/java/com/neu/his/cloud/api/app/dto/app/AppStaffDescriptionResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.app.dto.app;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | @Setter
9 | @Getter
10 | @ToString
11 | public class AppStaffDescriptionResult {
12 |
13 | @ApiModelProperty(value = "staffId")
14 | private Long id;
15 | @ApiModelProperty(value = "staff头像")
16 | private String url;
17 | @ApiModelProperty(value = "姓名")
18 | private String name;
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-app/target/classes/META-INF/his-cloud-api-app.kotlin_module:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/common/IErrorCode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.common;
2 |
3 | /**
4 | * 封装API的错误码
5 | */
6 | public interface IErrorCode {
7 | long getCode();
8 |
9 | String getMessage();
10 | }
11 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/dms/DmsCaseHistoryResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.dms;
2 |
3 | import com.neu.his.cloud.api.pc.model.DmsCaseHistory;
4 | import io.swagger.annotations.ApiModelProperty;
5 | import lombok.Getter;
6 | import lombok.Setter;
7 | import lombok.ToString;
8 |
9 | import java.io.Serializable;
10 | import java.util.List;
11 |
12 | @Setter
13 | @Getter
14 | @ToString
15 | public class DmsCaseHistoryResult implements Serializable {
16 | @ApiModelProperty(value = "历史病历列表")
17 | List dmsCaseHistoryList;
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/dms/DmsCaseModelCatalogNode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.dms;
2 |
3 | import com.neu.his.cloud.api.pc.model.DmsCaseModelCatalog;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 |
7 | import java.io.Serializable;
8 | import java.util.List;
9 |
10 |
11 | public class DmsCaseModelCatalogNode extends DmsCaseModelCatalog implements Serializable {
12 |
13 | @Setter
14 | @Getter
15 | List children;
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/dms/DmsDiseCatalogParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.dms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 |
10 | @Setter
11 | @Getter
12 | @ToString
13 | public class DmsDiseCatalogParam implements Serializable {
14 | @ApiModelProperty(value = "疾病分类名")
15 | private String name;
16 | @ApiModelProperty(value = "状态")
17 | private Integer status;
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/dms/DmsDiseCatalogResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.dms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 |
10 | @Setter
11 | @Getter
12 | @ToString
13 | public class DmsDiseCatalogResult implements Serializable {
14 | @ApiModelProperty(value = "主键")
15 | private Long id;
16 | @ApiModelProperty(value = "疾病分类名")
17 | private String name;
18 | @ApiModelProperty(value = "状态")
19 | private Integer status;
20 | }
21 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/dms/DmsDrugRedisParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.dms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 | import java.util.List;
10 |
11 | @Setter
12 | @Getter
13 | @ToString
14 | public class DmsDrugRedisParam implements Serializable {
15 |
16 | @ApiModelProperty(value = "名称" )
17 | private String name;
18 | @ApiModelProperty(value = "药品列表" )
19 | private List druglist;
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/dms/DmsNonDrugItemRecordListParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.dms;
2 |
3 |
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 | import java.util.List;
10 |
11 | @Setter
12 | @Getter
13 | @ToString
14 | public class DmsNonDrugItemRecordListParam implements Serializable {
15 | List dmsNonDrugItemRecordParamList;
16 |
17 | Long registrationId;
18 | Long createStaffId;
19 | Integer type;
20 |
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/dms/DmsRefundDrugListParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.dms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 | import java.util.List;
10 |
11 | @Getter
12 | @Setter
13 | @ToString
14 | public class DmsRefundDrugListParam implements Serializable {
15 |
16 | @ApiModelProperty("处方项List")
17 | List refundItemList;
18 | @ApiModelProperty("执行人Id")
19 | Long excutorId;
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/oss/OssCallbackParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.oss;
2 |
3 |
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 |
10 |
11 | @Getter
12 | @Setter
13 | @ToString
14 | public class OssCallbackParam implements Serializable {
15 | private String callbackUrl;
16 | private String callbackBody;
17 | private String callbackBodyType;
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/oss/OssCallbackResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.oss;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | @Getter
8 | @Setter
9 | @ToString
10 | public class OssCallbackResult {
11 | private String filename;
12 | private String size;
13 | private String mimeType;
14 | private String width;
15 | private String height;
16 |
17 |
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/oss/OssPolicyResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.oss;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | @Getter
8 | @Setter
9 | @ToString
10 | public class OssPolicyResult {
11 | private String accessKeyId;
12 | private String policy;
13 | private String signature;
14 | private String dir;
15 | private String host;
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/sms/SmsPatientsStatisticsResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.sms;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | import java.io.Serializable;
8 | import java.util.List;
9 |
10 | @Setter
11 | @Getter
12 | @ToString
13 | public class SmsPatientsStatisticsResult implements Serializable {
14 | List dateOfSevenDays;
15 |
16 | List numOfPatients;
17 | }
18 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/sms/SmsPermissionNode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.sms;
2 |
3 | import com.neu.his.cloud.api.pc.model.SmsPermission;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 |
7 | import java.io.Serializable;
8 | import java.util.List;
9 |
10 | public class SmsPermissionNode extends SmsPermission implements Serializable {
11 |
12 | @Getter
13 | @Setter
14 | private List children;
15 | }
16 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/sms/SmsSkdRuleItemParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.sms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 |
10 | @Setter
11 | @Getter
12 | @ToString
13 | public class SmsSkdRuleItemParam implements Serializable {
14 | @ApiModelProperty(value = "医生id")
15 | private Long staffId;
16 | @ApiModelProperty(value = "一周中的排班时间")
17 | private String daysOfWeek;
18 | @ApiModelProperty(value = "挂号限额")
19 | private Long skLimit;
20 | }
21 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/src/main/java/com/neu/his/cloud/api/pc/dto/sms/SmsStaffAmountStatisticsResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.api.pc.dto.sms;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | import java.io.Serializable;
8 | import java.math.BigDecimal;
9 | import java.util.List;
10 |
11 | @Setter
12 | @Getter
13 | @ToString
14 | public class SmsStaffAmountStatisticsResult implements Serializable {
15 | List amountCat;
16 |
17 | List amount;
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/target/his-cloud-api-pc-1.0.0-SNAPSHOT.jar.original:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-api-pc/target/his-cloud-api-pc-1.0.0-SNAPSHOT.jar.original
--------------------------------------------------------------------------------
/his-cloud/his-cloud-api-pc/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-api-pc/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
--------------------------------------------------------------------------------
/his-cloud/his-cloud-config/src/main/java/com/neu/his/cloud/config/controller/Refresh.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.config.controller;
2 |
3 | import org.springframework.cloud.context.config.annotation.RefreshScope;
4 | import org.springframework.stereotype.Component;
5 | import org.springframework.web.bind.annotation.RestController;
6 |
7 | @RestController
8 | @RefreshScope
9 | public class Refresh {
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-eureka/src/main/java/com/neu/his/cloud/eureka/EurekaApplication.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.eureka;
2 |
3 |
4 | import org.springframework.boot.SpringApplication;
5 | import org.springframework.boot.autoconfigure.SpringBootApplication;
6 | import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
7 |
8 | @SpringBootApplication
9 | @EnableEurekaServer
10 | public class EurekaApplication {
11 | public static void main(String[] args) {
12 | SpringApplication.run(EurekaApplication.class,args);
13 | }
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-monitor/src/resources/application.yml:
--------------------------------------------------------------------------------
1 | spring:
2 | application:
3 | name: his-cloud-monitor
4 | zipkin:
5 | base-url: http://localhost:9411
6 |
7 | server:
8 | port: 8084
9 |
10 | management:
11 | endpoints:
12 | web:
13 | exposure:
14 | include: "*" #暴露所有的端点我们可以看到更多的服务实例相关信息,
15 | endpoint:
16 | health:
17 | show-details: ALWAYS #health endpoint是否必须显示全部细节
18 |
19 | eureka:
20 | client:
21 | serviceUrl:
22 | defaultZone: http://localhost:8761/eureka/
--------------------------------------------------------------------------------
/his-cloud/his-cloud-monitor/target/classes/application.yml:
--------------------------------------------------------------------------------
1 | spring:
2 | application:
3 | name: his-cloud-monitor
4 | zipkin:
5 | base-url: http://localhost:9411
6 |
7 | server:
8 | port: 8084
9 |
10 | management:
11 | endpoints:
12 | web:
13 | exposure:
14 | include: "*" #暴露所有的端点我们可以看到更多的服务实例相关信息,
15 | endpoint:
16 | health:
17 | show-details: ALWAYS #health endpoint是否必须显示全部细节
18 |
19 | eureka:
20 | client:
21 | serviceUrl:
22 | defaultZone: http://localhost:8761/eureka/
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-bms/src/main/java/com/neu/his/cloud/service/bms/common/IErrorCode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.bms.common;
2 |
3 | /**
4 | * 封装API的错误码
5 | */
6 | public interface IErrorCode {
7 | long getCode();
8 |
9 | String getMessage();
10 | }
11 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-bms/src/main/java/com/neu/his/cloud/service/bms/dto/app/AppCheckTestResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.bms.dto.app;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | @Setter
9 | @Getter
10 | @ToString
11 | public class AppCheckTestResult {
12 |
13 | @ApiModelProperty(value = "检查部位")
14 | String checkParts;
15 | @ApiModelProperty(value = "结果")
16 | String checkResult;
17 | @ApiModelProperty(value = "结果图片链接")
18 | String resultImgUrlList;
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-bms/src/main/java/com/neu/his/cloud/service/bms/dto/app/AppStaffDescriptionResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.bms.dto.app;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | @Setter
9 | @Getter
10 | @ToString
11 | public class AppStaffDescriptionResult {
12 |
13 | @ApiModelProperty(value = "staffId")
14 | private Long id;
15 | @ApiModelProperty(value = "staff头像")
16 | private String url;
17 | @ApiModelProperty(value = "姓名")
18 | private String name;
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-bms/src/main/java/com/neu/his/cloud/service/bms/service/DemoService.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.bms.service;
2 |
3 |
4 | public interface DemoService {
5 |
6 | public void test();
7 | }
8 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-bms/src/main/java/com/neu/his/cloud/service/bms/service/impl/DemoServiceImpl.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.bms.service.impl;
2 |
3 |
4 | import com.neu.his.cloud.service.bms.service.DemoService;
5 | import org.springframework.stereotype.Service;
6 |
7 |
8 | @Service
9 | public class DemoServiceImpl implements DemoService {
10 |
11 |
12 | @Override
13 | public void test(){
14 | System.out.println("zzz");
15 | }
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-bms/src/main/resources/generator.properties:
--------------------------------------------------------------------------------
1 | jdbc.driverClass=com.mysql.jdbc.Driver
2 | jdbc.connectionURL=jdbc:mysql://localhost:3306/his?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
3 | jdbc.userId=root
4 | jdbc.password=123456
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-bms/target/classes/generator.properties:
--------------------------------------------------------------------------------
1 | jdbc.driverClass=com.mysql.jdbc.Driver
2 | jdbc.connectionURL=jdbc:mysql://localhost:3306/his?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
3 | jdbc.userId=root
4 | jdbc.password=123456
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-bms/target/his-cloud-service-bms-1.0.0-SNAPSHOT.jar.original:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-service-bms/target/his-cloud-service-bms-1.0.0-SNAPSHOT.jar.original
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-bms/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-service-bms/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/common/IErrorCode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.common;
2 |
3 | /**
4 | * 封装API的错误码
5 | */
6 | public interface IErrorCode {
7 | long getCode();
8 |
9 | String getMessage();
10 | }
11 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/dto/app/AppCheckTestResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.dto.app;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | @Setter
9 | @Getter
10 | @ToString
11 | public class AppCheckTestResult {
12 |
13 | @ApiModelProperty(value = "检查部位")
14 | String checkParts;
15 | @ApiModelProperty(value = "结果")
16 | String checkResult;
17 | @ApiModelProperty(value = "结果图片链接")
18 | String resultImgUrlList;
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/dto/dms/DmsCaseHistoryResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.dto.dms;
2 |
3 | import com.neu.his.cloud.service.dms.model.DmsCaseHistory;
4 | import io.swagger.annotations.ApiModelProperty;
5 | import lombok.Getter;
6 | import lombok.Setter;
7 | import lombok.ToString;
8 |
9 | import java.io.Serializable;
10 | import java.util.List;
11 |
12 | @Setter
13 | @Getter
14 | @ToString
15 | public class DmsCaseHistoryResult implements Serializable {
16 | @ApiModelProperty(value = "历史病历列表")
17 | List dmsCaseHistoryList;
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/dto/dms/DmsCaseModelCatalogNode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.dto.dms;
2 |
3 | import com.neu.his.cloud.service.dms.model.DmsCaseModelCatalog;
4 |
5 | import lombok.Getter;
6 | import lombok.Setter;
7 |
8 | import java.io.Serializable;
9 | import java.util.List;
10 |
11 | /**
12 | * 病历模板目录
13 | */
14 | public class DmsCaseModelCatalogNode extends DmsCaseModelCatalog implements Serializable {
15 | @Setter
16 | @Getter
17 | List children;
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/dto/dms/DmsDiseCatalogParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.dto.dms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 |
10 | @Setter
11 | @Getter
12 | @ToString
13 | public class DmsDiseCatalogParam implements Serializable {
14 | @ApiModelProperty(value = "疾病分类名")
15 | private String name;
16 | @ApiModelProperty(value = "状态")
17 | private Integer status;
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/dto/dms/DmsDrugRedisParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.dto.dms;
2 |
3 |
4 | import io.swagger.annotations.ApiModelProperty;
5 | import lombok.Getter;
6 | import lombok.Setter;
7 | import lombok.ToString;
8 |
9 | import java.io.Serializable;
10 | import java.util.List;
11 |
12 | @Setter
13 | @Getter
14 | @ToString
15 | public class DmsDrugRedisParam implements Serializable {
16 |
17 | @ApiModelProperty(value = "名称" )
18 | private String name;
19 | @ApiModelProperty(value = "药品列表" )
20 | private List druglist;
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/dto/dms/DmsNonDrugItemRecordListParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.dto.dms;
2 |
3 |
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 | import java.util.List;
10 |
11 | @Setter
12 | @Getter
13 | @ToString
14 | public class DmsNonDrugItemRecordListParam implements Serializable {
15 | List dmsNonDrugItemRecordParamList;
16 |
17 | Long registrationId;
18 | Long createStaffId;
19 | Integer type;
20 |
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/dto/dms/DmsRefundDrugListParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.dto.dms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 | import java.util.List;
10 |
11 | @Getter
12 | @Setter
13 | @ToString
14 | public class DmsRefundDrugListParam implements Serializable {
15 |
16 | @ApiModelProperty("处方项List")
17 | List refundItemList;
18 | @ApiModelProperty("执行人Id")
19 | Long excutorId;
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/dto/oss/OssCallbackParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.dto.oss;
2 |
3 |
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 |
10 |
11 | @Getter
12 | @Setter
13 | @ToString
14 | public class OssCallbackParam implements Serializable {
15 | private String callbackUrl;
16 | private String callbackBody;
17 | private String callbackBodyType;
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/dto/oss/OssCallbackResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.dto.oss;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | @Getter
8 | @Setter
9 | @ToString
10 | public class OssCallbackResult {
11 | private String filename;
12 | private String size;
13 | private String mimeType;
14 | private String width;
15 | private String height;
16 |
17 |
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/dto/oss/OssPolicyResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.dto.oss;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | @Getter
8 | @Setter
9 | @ToString
10 | public class OssPolicyResult {
11 | private String accessKeyId;
12 | private String policy;
13 | private String signature;
14 | private String dir;
15 | private String host;
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/service/DmsFeeRabbitMQService.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.service;
2 |
3 | public interface DmsFeeRabbitMQService {
4 |
5 | /**
6 | * 描述:草药处方超时未缴费处理(设置状态为4已过期)
7 | * author: ma
8 | */
9 | int herbalOutOfTime(Long prescriptionId);
10 |
11 | /**
12 | * 描述:成药处方超时未缴费处理(设置状态为4已过期)
13 | *
author: ma
14 | */
15 | int medicineOutOfTime(Long prescriptionId);
16 |
17 | /**
18 | * 描述:非药品超时未缴费处理(设置状态为6已过期)
19 | *
author: ma
20 | */
21 | int nonDrugOutOfTime(Long prescriptionId);
22 |
23 | }
24 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/java/com/neu/his/cloud/service/dms/service/OssService.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.dms.service;
2 |
3 |
4 |
5 | import com.neu.his.cloud.service.dms.dto.oss.OssCallbackResult;
6 | import com.neu.his.cloud.service.dms.dto.oss.OssPolicyResult;
7 |
8 | import javax.servlet.http.HttpServletRequest;
9 |
10 | /**
11 | * oss上传管理Service
12 | */
13 | public interface OssService {
14 | OssPolicyResult policy();
15 | OssCallbackResult callback(HttpServletRequest request);
16 | }
17 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/src/main/resources/generator.properties:
--------------------------------------------------------------------------------
1 | jdbc.driverClass=com.mysql.jdbc.Driver
2 | jdbc.connectionURL=jdbc:mysql://localhost:3306/his?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
3 | jdbc.userId=root
4 | jdbc.password=123456
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/target/classes/generator.properties:
--------------------------------------------------------------------------------
1 | jdbc.driverClass=com.mysql.jdbc.Driver
2 | jdbc.connectionURL=jdbc:mysql://localhost:3306/his?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
3 | jdbc.userId=root
4 | jdbc.password=123456
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/target/his-cloud-service-dms-1.0.0-SNAPSHOT.jar.original:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-service-dms/target/his-cloud-service-dms-1.0.0-SNAPSHOT.jar.original
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-dms/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-service-dms/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-pms/src/main/java/com/neu/his/cloud/service/pms/common/IErrorCode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.pms.common;
2 |
3 | /**
4 | * 封装API的错误码
5 | */
6 | public interface IErrorCode {
7 | long getCode();
8 |
9 | String getMessage();
10 | }
11 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-pms/src/main/java/com/neu/his/cloud/service/pms/dto/dms/DmsCaseHistoryResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.pms.dto.dms;
2 |
3 | import com.neu.his.cloud.service.pms.model.DmsCaseHistory;
4 | import io.swagger.annotations.ApiModelProperty;
5 | import lombok.Getter;
6 | import lombok.Setter;
7 | import lombok.ToString;
8 |
9 | import java.io.Serializable;
10 | import java.util.List;
11 |
12 | @Setter
13 | @Getter
14 | @ToString
15 | public class DmsCaseHistoryResult implements Serializable {
16 | @ApiModelProperty(value = "历史病历列表")
17 | List dmsCaseHistoryList;
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-pms/src/main/java/com/neu/his/cloud/service/pms/dto/pms/PmsDrugStorePatientListResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.pms.dto.pms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.util.List;
9 |
10 | @Setter
11 | @Getter
12 | @ToString
13 | public class PmsDrugStorePatientListResult {
14 | @ApiModelProperty(value = "未发药患者")
15 | List undoPatientList ;
16 | @ApiModelProperty(value = "已发药患者")
17 | List donePatientList ;
18 |
19 |
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-pms/src/main/java/com/neu/his/cloud/service/pms/dto/pms/PmsDrugStorePatientResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.pms.dto.pms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 |
5 | import java.util.List;
6 |
7 | public class PmsDrugStorePatientResult {
8 | @ApiModelProperty(value = "处方Ids")
9 | List prescriptionIdList;
10 | @ApiModelProperty(value = "患者名")
11 | String patientName;
12 | @ApiModelProperty(value = "患者Id")
13 | Long patientId;
14 | @ApiModelProperty(value = "患者病历号")
15 | String medicalRecordNo;
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-pms/src/main/resources/generator.properties:
--------------------------------------------------------------------------------
1 | jdbc.driverClass=com.mysql.jdbc.Driver
2 | jdbc.connectionURL=jdbc:mysql://localhost:3306/his?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
3 | jdbc.userId=root
4 | jdbc.password=123456
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-pms/target/classes/generator.properties:
--------------------------------------------------------------------------------
1 | jdbc.driverClass=com.mysql.jdbc.Driver
2 | jdbc.connectionURL=jdbc:mysql://localhost:3306/his?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
3 | jdbc.userId=root
4 | jdbc.password=123456
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-pms/target/his-cloud-service-pms-1.0.0-SNAPSHOT.jar.original:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-service-pms/target/his-cloud-service-pms-1.0.0-SNAPSHOT.jar.original
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-pms/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-service-pms/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-sms/src/main/java/com/neu/his/cloud/service/sms/common/IErrorCode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.sms.common;
2 |
3 | /**
4 | * 封装API的错误码
5 | */
6 | public interface IErrorCode {
7 | long getCode();
8 |
9 | String getMessage();
10 | }
11 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-sms/src/main/java/com/neu/his/cloud/service/sms/dto/app/AppCheckTestResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.sms.dto.app;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | @Setter
9 | @Getter
10 | @ToString
11 | public class AppCheckTestResult {
12 |
13 | @ApiModelProperty(value = "检查部位")
14 | String checkParts;
15 | @ApiModelProperty(value = "结果")
16 | String checkResult;
17 | @ApiModelProperty(value = "结果图片链接")
18 | String resultImgUrlList;
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-sms/src/main/java/com/neu/his/cloud/service/sms/dto/app/AppStaffDescriptionResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.sms.dto.app;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | @Setter
9 | @Getter
10 | @ToString
11 | public class AppStaffDescriptionResult {
12 |
13 | @ApiModelProperty(value = "staffId")
14 | private Long id;
15 | @ApiModelProperty(value = "staff头像")
16 | private String url;
17 | @ApiModelProperty(value = "姓名")
18 | private String name;
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-sms/src/main/java/com/neu/his/cloud/service/sms/dto/sms/SmsPatientsStatisticsResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.sms.dto.sms;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | import java.io.Serializable;
8 | import java.util.List;
9 |
10 | @Setter
11 | @Getter
12 | @ToString
13 | public class SmsPatientsStatisticsResult implements Serializable {
14 | List dateOfSevenDays;
15 |
16 | List numOfPatients;
17 | }
18 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-sms/src/main/java/com/neu/his/cloud/service/sms/dto/sms/SmsPermissionNode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.sms.dto.sms;
2 |
3 | import com.neu.his.cloud.service.sms.model.SmsPermission;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 |
7 | import java.io.Serializable;
8 | import java.util.List;
9 |
10 | public class SmsPermissionNode extends SmsPermission implements Serializable {
11 |
12 | @Getter
13 | @Setter
14 | private List children;
15 | }
16 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-sms/src/main/java/com/neu/his/cloud/service/sms/dto/sms/SmsStaffAmountStatisticsResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.service.sms.dto.sms;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | import java.io.Serializable;
8 | import java.math.BigDecimal;
9 | import java.util.List;
10 |
11 | @Setter
12 | @Getter
13 | @ToString
14 | public class SmsStaffAmountStatisticsResult implements Serializable {
15 | List amountCat;
16 |
17 | List amount;
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-sms/src/main/resources/generator.properties:
--------------------------------------------------------------------------------
1 | jdbc.driverClass=com.mysql.jdbc.Driver
2 | jdbc.connectionURL=jdbc:mysql://localhost:3306/his?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
3 | jdbc.userId=root
4 | jdbc.password=123456
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-sms/target/classes/generator.properties:
--------------------------------------------------------------------------------
1 | jdbc.driverClass=com.mysql.jdbc.Driver
2 | jdbc.connectionURL=jdbc:mysql://localhost:3306/his?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
3 | jdbc.userId=root
4 | jdbc.password=123456
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-sms/target/his-cloud-service-sms-1.0.0-SNAPSHOT.jar.original:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-service-sms/target/his-cloud-service-sms-1.0.0-SNAPSHOT.jar.original
--------------------------------------------------------------------------------
/his-cloud/his-cloud-service-sms/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-service-sms/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zipkin/src/java/com/neu/his/cloud/zipkin/ZipkinApplication.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zipkin;
2 |
3 |
4 | import org.springframework.boot.SpringApplication;
5 | import org.springframework.boot.autoconfigure.SpringBootApplication;
6 | import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
7 | import zipkin.server.internal.EnableZipkinServer;
8 |
9 | @SpringBootApplication
10 | @EnableEurekaClient
11 | @EnableZipkinServer
12 | public class ZipkinApplication {
13 | public static void main(String[] args) {
14 | SpringApplication.run(ZipkinApplication.class,args);
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zipkin/src/resources/application.yml:
--------------------------------------------------------------------------------
1 | spring:
2 | application:
3 | name: his-cloud-zipkin
4 | boot:
5 | admin:
6 | client:
7 | url: http://localhost:8084
8 | server:
9 | port: 9411
10 |
11 | eureka:
12 | client:
13 | serviceUrl:
14 | defaultZone: http://localhost:8761/eureka/
15 |
16 | management:
17 | metrics:
18 | web:
19 | server:
20 | auto-time-requests: false
21 | endpoints:
22 | web:
23 | exposure:
24 | include: "*" #暴露所有的端点我们可以看到更多的服务实例相关信息,
25 | endpoint:
26 | health:
27 | show-details: ALWAYS #health endpoint是否必须显示全部细节
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zipkin/target/classes/application.yml:
--------------------------------------------------------------------------------
1 | spring:
2 | application:
3 | name: his-cloud-zipkin
4 | boot:
5 | admin:
6 | client:
7 | url: http://localhost:8084
8 | server:
9 | port: 9411
10 |
11 | eureka:
12 | client:
13 | serviceUrl:
14 | defaultZone: http://localhost:8761/eureka/
15 |
16 | management:
17 | metrics:
18 | web:
19 | server:
20 | auto-time-requests: false
21 | endpoints:
22 | web:
23 | exposure:
24 | include: "*" #暴露所有的端点我们可以看到更多的服务实例相关信息,
25 | endpoint:
26 | health:
27 | show-details: ALWAYS #health endpoint是否必须显示全部细节
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/common/IErrorCode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.common;
2 |
3 | /**
4 | * 封装API的错误码
5 | */
6 | public interface IErrorCode {
7 | long getCode();
8 |
9 | String getMessage();
10 | }
11 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/dms/DmsCaseHistoryResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.dms;
2 |
3 | import com.neu.his.cloud.zuul.model.DmsCaseHistory;
4 | import io.swagger.annotations.ApiModelProperty;
5 | import lombok.Getter;
6 | import lombok.Setter;
7 | import lombok.ToString;
8 |
9 | import java.io.Serializable;
10 | import java.util.List;
11 |
12 | @Setter
13 | @Getter
14 | @ToString
15 | public class DmsCaseHistoryResult implements Serializable {
16 | @ApiModelProperty(value = "历史病历列表")
17 | List dmsCaseHistoryList;
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/dms/DmsCaseModelCatalogNode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.dms;
2 |
3 |
4 | import com.neu.his.cloud.zuul.model.DmsCaseModelCatalog;
5 | import lombok.Getter;
6 | import lombok.Setter;
7 |
8 | import java.io.Serializable;
9 | import java.util.List;
10 |
11 |
12 | public class DmsCaseModelCatalogNode extends DmsCaseModelCatalog implements Serializable {
13 |
14 | @Setter
15 | @Getter
16 | List children;
17 |
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/dms/DmsDiseCatalogParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.dms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 |
10 | @Setter
11 | @Getter
12 | @ToString
13 | public class DmsDiseCatalogParam implements Serializable {
14 | @ApiModelProperty(value = "疾病分类名")
15 | private String name;
16 | @ApiModelProperty(value = "状态")
17 | private Integer status;
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/dms/DmsDiseCatalogResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.dms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 |
10 | @Setter
11 | @Getter
12 | @ToString
13 | public class DmsDiseCatalogResult implements Serializable {
14 | @ApiModelProperty(value = "主键")
15 | private Long id;
16 | @ApiModelProperty(value = "疾病分类名")
17 | private String name;
18 | @ApiModelProperty(value = "状态")
19 | private Integer status;
20 | }
21 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/dms/DmsDrugRedisParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.dms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 | import java.util.List;
10 |
11 | @Setter
12 | @Getter
13 | @ToString
14 | public class DmsDrugRedisParam implements Serializable {
15 |
16 | @ApiModelProperty(value = "名称" )
17 | private String name;
18 | @ApiModelProperty(value = "药品列表" )
19 | private List druglist;
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/dms/DmsNonDrugItemRecordListParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.dms;
2 |
3 |
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 | import java.util.List;
10 |
11 | @Setter
12 | @Getter
13 | @ToString
14 | public class DmsNonDrugItemRecordListParam implements Serializable {
15 | List dmsNonDrugItemRecordParamList;
16 |
17 | Long registrationId;
18 | Long createStaffId;
19 | Integer type;
20 |
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/dms/DmsRefundDrugListParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.dms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 | import java.util.List;
10 |
11 | @Getter
12 | @Setter
13 | @ToString
14 | public class DmsRefundDrugListParam implements Serializable {
15 |
16 | @ApiModelProperty("处方项List")
17 | List refundItemList;
18 | @ApiModelProperty("执行人Id")
19 | Long excutorId;
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/oss/OssCallbackParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.oss;
2 |
3 |
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 |
10 |
11 | @Getter
12 | @Setter
13 | @ToString
14 | public class OssCallbackParam implements Serializable {
15 | private String callbackUrl;
16 | private String callbackBody;
17 | private String callbackBodyType;
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/oss/OssCallbackResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.oss;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | @Getter
8 | @Setter
9 | @ToString
10 | public class OssCallbackResult {
11 | private String filename;
12 | private String size;
13 | private String mimeType;
14 | private String width;
15 | private String height;
16 |
17 |
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/oss/OssPolicyResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.oss;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | @Getter
8 | @Setter
9 | @ToString
10 | public class OssPolicyResult {
11 | private String accessKeyId;
12 | private String policy;
13 | private String signature;
14 | private String dir;
15 | private String host;
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/sms/SmsPatientsStatisticsResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.sms;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | import java.io.Serializable;
8 | import java.util.List;
9 |
10 | @Setter
11 | @Getter
12 | @ToString
13 | public class SmsPatientsStatisticsResult implements Serializable {
14 | List dateOfSevenDays;
15 |
16 | List numOfPatients;
17 | }
18 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/sms/SmsPermissionNode.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.sms;
2 |
3 |
4 | import com.neu.his.cloud.zuul.model.SmsPermission;
5 | import lombok.Getter;
6 | import lombok.Setter;
7 |
8 | import java.io.Serializable;
9 | import java.util.List;
10 |
11 | public class SmsPermissionNode extends SmsPermission implements Serializable {
12 |
13 | @Getter
14 | @Setter
15 | private List children;
16 | }
17 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/sms/SmsSkdRuleItemParam.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.sms;
2 |
3 | import io.swagger.annotations.ApiModelProperty;
4 | import lombok.Getter;
5 | import lombok.Setter;
6 | import lombok.ToString;
7 |
8 | import java.io.Serializable;
9 |
10 | @Setter
11 | @Getter
12 | @ToString
13 | public class SmsSkdRuleItemParam implements Serializable {
14 | @ApiModelProperty(value = "医生id")
15 | private Long staffId;
16 | @ApiModelProperty(value = "一周中的排班时间")
17 | private String daysOfWeek;
18 | @ApiModelProperty(value = "挂号限额")
19 | private Long skLimit;
20 | }
21 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/dto/sms/SmsStaffAmountStatisticsResult.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.dto.sms;
2 |
3 | import lombok.Getter;
4 | import lombok.Setter;
5 | import lombok.ToString;
6 |
7 | import java.io.Serializable;
8 | import java.math.BigDecimal;
9 | import java.util.List;
10 |
11 | @Setter
12 | @Getter
13 | @ToString
14 | public class SmsStaffAmountStatisticsResult implements Serializable {
15 | List amountCat;
16 |
17 | List amount;
18 | }
19 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/java/com/neu/his/cloud/zuul/service/sms/SmsRoleService.java:
--------------------------------------------------------------------------------
1 | package com.neu.his.cloud.zuul.service.sms;
2 |
3 | import com.neu.his.cloud.zuul.model.SmsPermission;
4 | import com.neu.his.cloud.zuul.model.SmsStaff;
5 |
6 | import java.util.List;
7 |
8 | /**
9 | * @author Zain
10 | * @title: SmsRoleService
11 | * @projectName his-cloud
12 | * @description: TODO
13 | * @date 2019/6/17 14:20
14 | */
15 | public interface SmsRoleService {
16 |
17 | /**
18 | * 描述:根据角色Id查询角色的权限
19 | * author: 赵煜
20 | */
21 | List getPermissionList(Long roleId);
22 | }
23 |
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/src/main/resources/generator.properties:
--------------------------------------------------------------------------------
1 | jdbc.driverClass=com.mysql.jdbc.Driver
2 | jdbc.connectionURL=jdbc:mysql://localhost:3306/his?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
3 | jdbc.userId=root
4 | jdbc.password=123456
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/target/classes/generator.properties:
--------------------------------------------------------------------------------
1 | jdbc.driverClass=com.mysql.jdbc.Driver
2 | jdbc.connectionURL=jdbc:mysql://localhost:3306/his?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
3 | jdbc.userId=root
4 | jdbc.password=123456
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/target/his-cloud-zuul-1.0.0-SNAPSHOT.jar.original:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-zuul/target/his-cloud-zuul-1.0.0-SNAPSHOT.jar.original
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-zuul/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-zuul/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
--------------------------------------------------------------------------------
/his-cloud/his-cloud-zuul/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZainZhao/HIS/eab8f9f9840c467b838940b345147f15de4ac372/his-cloud/his-cloud-zuul/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
--------------------------------------------------------------------------------