Commit 2b1f675065aff3735af23a862a26760236760fca
1 parent
c84e91768d
Exists in
master
and in
6 other branches
血压
Showing 4 changed files with 5 additions and 5 deletions
- platform-operate-api/src/main/java/com/lyms/hospitalapi/llfy/ConnTools.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/BloodPressureController.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/IBloodPressureService.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/BloodPressureServiceImpl.java
platform-operate-api/src/main/java/com/lyms/hospitalapi/llfy/ConnTools.java
View file @
2b1f675
... | ... | @@ -13,7 +13,7 @@ |
13 | 13 | private static String hisDirverClassName = "com.microsoft.sqlserver.jdbc.SQLServerDriver"; |
14 | 14 | private static String hisUrl = "jdbc:sqlserver://192.168.25.10\\his08; DatabaseName=xlhhis"; |
15 | 15 | private static String hisUser = "ms"; |
16 | - private static String hisPassword = "llfyhis123."; | |
16 | + private static String hisPassword = "llfy"; | |
17 | 17 | // private static String hisUrl = "jdbc:sqlserver://192.168.5.133; DatabaseName=xlhhis"; |
18 | 18 | // private static String hisUser = "sa"; |
19 | 19 | // private static String hisPassword = "123.com"; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/BloodPressureController.java
View file @
2b1f675
... | ... | @@ -134,9 +134,9 @@ |
134 | 134 | } |
135 | 135 | |
136 | 136 | @ResponseBody |
137 | - @RequestMapping(value = "/getBloodSugars/{doctorId}/{type}/{status}", method = RequestMethod.GET) | |
137 | + @RequestMapping(value = "/getBloodPressures/{doctorId}/{type}/{status}", method = RequestMethod.GET) | |
138 | 138 | public BaseResponse getBloodSugars(@PathVariable String doctorId,@PathVariable Integer type,@PathVariable Integer status,@RequestParam(required = false) String keyword) { |
139 | - return bloodPressureService.getBloodSugars(doctorId, type, status, keyword); | |
139 | + return bloodPressureService.getBloodPressures(doctorId, type, status, keyword); | |
140 | 140 | } |
141 | 141 | |
142 | 142 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/IBloodPressureService.java
View file @
2b1f675
... | ... | @@ -27,6 +27,6 @@ |
27 | 27 | |
28 | 28 | BaseResponse notify(List<String> patientIds, Integer type); |
29 | 29 | |
30 | - BaseResponse getBloodSugars(String doctorId, Integer type, Integer status, String keyword); | |
30 | + BaseResponse getBloodPressures(String doctorId, Integer type, Integer status, String keyword); | |
31 | 31 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/BloodPressureServiceImpl.java
View file @
2b1f675
... | ... | @@ -582,7 +582,7 @@ |
582 | 582 | } |
583 | 583 | |
584 | 584 | @Override |
585 | - public BaseResponse getBloodSugars(String doctorId, Integer type, Integer status, String keyword) { | |
585 | + public BaseResponse getBloodPressures(String doctorId, Integer type, Integer status, String keyword) { | |
586 | 586 | |
587 | 587 | List<Map> datas = new ArrayList<>(); |
588 | 588 | List<String> pids = new ArrayList<>(); |