移除mongo,将系统日志存储在es。修复拼团商品的正常购买价格为拼团价格问题

This commit is contained in:
paulGao 2021-12-15 17:42:03 +08:00
parent 2536e3b9f6
commit 0ef244b373

View File

@ -24,7 +24,7 @@ public interface PointsGoodsMapper extends BaseMapper<PointsGoods> {
* @param queryWrapper 查询条件
* @return 积分商品分页
*/
@Select("select * from points_goods pg left join goods_sku gs on pg.sku_id = gs.id ${ew.customSqlSegment}")
@Select("select * from li_points_goods pg left join li_goods_sku gs on pg.sku_id = gs.id ${ew.customSqlSegment}")
IPage<PointsGoodsVO> getPointsGoodsVO(IPage<PointsGoodsVO> page, @Param(Constants.WRAPPER) Wrapper<PointsGoodsVO> queryWrapper);
}