返回默认值

This commit is contained in:
2025-12-23 16:03:09 +08:00
parent ed1b6b2ecf
commit a05d8083bc
10 changed files with 24 additions and 15 deletions

View File

@@ -473,7 +473,7 @@ public class CallTableServiceImpl extends ServiceImpl<CallTableMapper, CallTable
} else {
List<CallTable> list = queryChain().eq(CallTable::getShopId, shopId).eq(CallTable::getState, 1).list();
if (list.isEmpty()) {
return new Page<>();
return PageUtil.emptyPage();
}
tableIds = list.stream()
.map(CallTable::getId)