Commit 50c74bf821fbbe27a1c45c0cf58b6a76e48a918c
1 parent
05b33062f8
Exists in
master
and in
6 other branches
高危诊断配置
Showing 2 changed files with 2 additions and 8 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
50c74bf
... | ... | @@ -2846,9 +2846,6 @@ |
2846 | 2846 | } |
2847 | 2847 | } |
2848 | 2848 | } |
2849 | - | |
2850 | - | |
2851 | - | |
2852 | 2849 | } |
2853 | 2850 | |
2854 | 2851 | return new BaseObjectResponse().setData(list).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); |
... | ... | @@ -2869,7 +2866,7 @@ |
2869 | 2866 | case 1 : |
2870 | 2867 | return calValue > Double.parseDouble(value); |
2871 | 2868 | case 2 : |
2872 | - return calValue >= Double.parseDouble(value) ; | |
2869 | + return calValue >= Double.parseDouble(value); | |
2873 | 2870 | case 3 : |
2874 | 2871 | return calValue < Double.parseDouble(value); |
2875 | 2872 | case 4 : |
2876 | 2873 | |
... | ... | @@ -2903,12 +2900,10 @@ |
2903 | 2900 | return compare(expId1, value1, calValue) && compare(expId2, value2, calValue); |
2904 | 2901 | case 2 : |
2905 | 2902 | return compare(expId1, value1, calValue) || compare(expId2, value2, calValue); |
2906 | - | |
2907 | 2903 | default: return false; |
2908 | 2904 | } |
2909 | 2905 | } |
2910 | - else if (StringUtils.isNotEmpty(expId1) && | |
2911 | - StringUtils.isNotEmpty(value1)) | |
2906 | + else if (StringUtils.isNotEmpty(expId1) && StringUtils.isNotEmpty(value1)) | |
2912 | 2907 | { |
2913 | 2908 | return compare(expId1, value1, calValue); |
2914 | 2909 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/DiagnoseConfigFacde.java
View file @
50c74bf