Commit b9a930a7 authored by shiyu's avatar shiyu

首页展示预估价大于200的商品

parent 21d772eb
......@@ -130,7 +130,7 @@ public class SupplierItemDaoImpl implements SupplierItemDao {
SupplierItemExample supplierItemExample = new SupplierItemExample();
SupplierItemExample.Criteria criteria = supplierItemExample.createCriteria();
// criteria.andCreatorIdIn(dto.getCreatorIdList());
criteria.andDistributionPriceGreaterThanOrEqualTo(dto.getGreaterThanPrice());
criteria.andOfficialEstimatedPriceGreaterThanOrEqualTo(dto.getGreaterThanPrice());
criteria.andTypeIn(dto.getTypeList());
criteria.andStockGreaterThan(0);
criteria.andIsDeletedEqualTo(false);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment