Merge remote-tracking branch 'origin/master'

This commit is contained in:
2025-03-14 14:13:06 +08:00
3 changed files with 34 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ public class ProductServiceImpl extends ServiceImpl<ProductMapper, Product> impl
if (ObjUtil.isNotNull(param.getSpecId())) {
queryWrapper.eq(Product::getSpecId, param.getSpecId());
}
if (ObjUtil.isNotNull(param.getType())) {
if (StrUtil.isNotEmpty(param.getType())) {
queryWrapper.eq(Product::getType, param.getType());
}
if (StrUtil.isNotEmpty(param.getCreateBeginTime())) {