Commit fb41bc480d02c3729f3d0773435a91be1bae4849
1 parent
9e0200bfee
Exists in
master
and in
1 other branch
产筛修改
Showing 1 changed file with 7 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/SieveListResult.java
View file @
fb41bc4
... | ... | @@ -53,6 +53,9 @@ |
53 | 53 | } |
54 | 54 | |
55 | 55 | public String getCsRemarkTypeText() { |
56 | + if(null==csRemarkTypeText){ | |
57 | + return SPIT; | |
58 | + } | |
56 | 59 | return csRemarkTypeText; |
57 | 60 | } |
58 | 61 | |
... | ... | @@ -61,6 +64,10 @@ |
61 | 64 | } |
62 | 65 | |
63 | 66 | public String getDetail() { |
67 | + | |
68 | + if(null==detail){ | |
69 | + return SPIT; | |
70 | + } | |
64 | 71 | return detail; |
65 | 72 | } |
66 | 73 |