Commit cdac7a83eb84df62e9707fe58e962a2a4e0d4d0c
1 parent
92b4b21bbf
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PremaritalCheckupFacade.java
View file @
cdac7a8
... | ... | @@ -2776,7 +2776,7 @@ |
2776 | 2776 | private String itemHandle(Integer status, String detail) { |
2777 | 2777 | String result = ""; |
2778 | 2778 | if (status != null && status == 1) { |
2779 | - result += "异常"; | |
2779 | + result += "有"; | |
2780 | 2780 | String content = ""; |
2781 | 2781 | if (detail != null) { |
2782 | 2782 | content = strPj(content, detail); |
... | ... | @@ -2786,7 +2786,7 @@ |
2786 | 2786 | } |
2787 | 2787 | } |
2788 | 2788 | if (status != null && status == 2) { |
2789 | - result += "正常"; | |
2789 | + result += "无"; | |
2790 | 2790 | } |
2791 | 2791 | return result; |
2792 | 2792 | } |