Commit a213c85f82e13b79ce7cf54ba43ab406bbb74c2f
1 parent
ce238b071b
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/QuanChanResult.java
View file @
a213c85
... | ... | @@ -44,7 +44,7 @@ |
44 | 44 | |
45 | 45 | public String getNextCheckTime() { |
46 | 46 | |
47 | - if(null==nextCheckTime){ | |
47 | + if(org.apache.commons.lang.StringUtils.isEmpty(nextCheckTime)){ | |
48 | 48 | return SPIT; |
49 | 49 | } |
50 | 50 | return nextCheckTime; |
... | ... | @@ -74,7 +74,7 @@ |
74 | 74 | } |
75 | 75 | |
76 | 76 | public String getcTime() { |
77 | - if(null==cTime){ | |
77 | + if(org.apache.commons.lang.StringUtils.isEmpty(cTime)){ | |
78 | 78 | return SPIT; |
79 | 79 | } |
80 | 80 | return cTime; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/QuanPatientsResult.java
View file @
a213c85