|
|
@@ -80,7 +80,10 @@ public interface FsIntegralGoodsMapper
|
|
|
"<if test = 'maps.goodsType != null and maps.goodsType != 0 '> " +
|
|
|
"and g.goods_type = #{maps.goodsType} " +
|
|
|
"</if>" +
|
|
|
- " order by sort asc ,g.goods_id desc "+
|
|
|
+ "<if test = \"maps.keyword != null and maps.keyword != '' \"> " +
|
|
|
+ "and goods_name like concat('%', #{maps.keyword}, '%') " +
|
|
|
+ "</if>" +
|
|
|
+ " order by sort asc, g.goods_id desc "+
|
|
|
"</script>"})
|
|
|
List<FsIntegralGoodsListUVO> selectFsIntegralGoodsListUVO(@Param("maps")FsIntegralGoodsListUParam param);
|
|
|
|