|
@@ -41,7 +41,7 @@ public class GoodsServiceImpl extends ServiceImpl<GoodsMapper, Goods> implements
|
|
|
public List<GoodsVo> queryList(GoodsQueryBo bo) {
|
|
|
LambdaQueryWrapper<Goods> lqw = Wrappers.lambdaQuery();
|
|
|
lqw.eq(bo.getYear() != null, Goods::getYear, bo.getYear());
|
|
|
- lqw.eq(bo.getSupplier() != null, Goods::getSupplier, bo.getSupplier());
|
|
|
+ lqw.eq(bo.getSupplyId() != null, Goods::getSupplyId, bo.getSupplyId());
|
|
|
lqw.eq(bo.getGoodsType() != null, Goods::getGoodsType, bo.getGoodsType());
|
|
|
lqw.eq(bo.getEducationTypeId() != null, Goods::getEducationTypeId, bo.getEducationTypeId());
|
|
|
lqw.eq(bo.getBusinessId() != null, Goods::getBusinessId, bo.getBusinessId());
|