!81 修复查询积分商品sql语句错误问题

Merge pull request !81 from OceansDeep/feature/pg
This commit is contained in:
OceansDeep 2021-12-15 09:43:22 +00:00 committed by Gitee
commit 51e7b4f15d

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);
}