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