feat:台桌列表筛选未绑定的

This commit is contained in:
SongZhang 2024-10-25 15:54:31 +08:00
parent 34b7c23392
commit 61b80c5a85
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ public class TbShopTableServiceImpl implements TbShopTableService {
}
if (StrUtil.isNotBlank(criteria.getState())) {
query.eq(TbShopTable::getStatus, criteria.getState());
query.eq(TbShopTable::getStatus, criteria.getState()).isNotNull(TbShopTable::getQrcode).ne(TbShopTable::getQrcode, "");
}
com.baomidou.mybatisplus.extension.plugins.pagination.Page<TbShopTable> shopTablePage =