1.门户首页基础设施统计会客厅数量错误修复

This commit is contained in:
dinggang 2022-10-27 20:34:58 +08:00
parent 5ac3e333c2
commit f3fbf82b3a
1 changed files with 1 additions and 0 deletions

View File

@ -1899,6 +1899,7 @@ public class ResourceServiceImpl extends CrudServiceImpl<ResourceDao, ResourceEn
//会客厅
CompletableFuture<Void> hkt = CompletableFuture.runAsync(() -> {
QueryWrapper<TMeetingroom> wrapper = new QueryWrapper<>();
wrapper.eq("del_flag", 0);
resultMap.put("会客厅", tMeetingroomMapper.selectCount(wrapper));
}, executor);