Commit f764374c99a40b8843f787f1ba72ec046efc4597
1 parent
2d52f64dde
Exists in
master
and in
1 other branch
111
Showing 2 changed files with 3 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/QuanPatientsResult.java
View file @
f764374
... | ... | @@ -152,7 +152,7 @@ |
152 | 152 | } |
153 | 153 | |
154 | 154 | public String getrLevel() { |
155 | - if(null==rLevel){ | |
155 | + if(org.apache.commons.lang.StringUtils.isEmpty(rLevel)){ | |
156 | 156 | return SPIT; |
157 | 157 | } |
158 | 158 | return rLevel; |
... | ... | @@ -163,7 +163,7 @@ |
163 | 163 | } |
164 | 164 | |
165 | 165 | public String getServiceType() { |
166 | - if(null==serviceType){ | |
166 | + if(org.apache.commons.lang.StringUtils.isEmpty(serviceType)){ | |
167 | 167 | return SPIT; |
168 | 168 | } |
169 | 169 | return serviceType; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/RiskPatientsResult.java
View file @
f764374