Commit c19d3375c7eb650bbe5774f784619f7026a38926

Authored by jiangjiazhi
1 parent 5712da42d3

增加社区id

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/VisitFacade.java View file @ c19d337
... ... @@ -191,7 +191,7 @@
191 191  
192 192 int count = visitService.queryVisitCount(visitQuery);
193 193  
194   - return count > 0 ? "未访视" : "访视" + count + "次";
  194 + return count <= 0 ? "未访视" : "访视" + count + "次";
195 195 }
196 196  
197 197 /**