查询逻辑 联查name和code

This commit is contained in:
2025-07-19 17:53:28 +08:00
parent e05a0476b2
commit dca61b7ae1
4 changed files with 40 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ public class WmsStockServiceImpl implements IWmsStockService {
@Override
public TableDataInfo<WmsStockVo> queryPageList(WmsStockBo bo, PageQuery pageQuery) {
LambdaQueryWrapper<WmsStock> lqw = buildQueryWrapper(bo);
Page<WmsStockVo> result = baseMapper.selectVoPage(pageQuery.build(), lqw);
Page<WmsStockVo> result = baseMapper.selectVoPagePlus(pageQuery.build(), lqw);
return TableDataInfo.build(result);
}