|
@@ -93,9 +93,15 @@ public interface FsStoreProductAttrValueMapper
|
|
"<if test = 'maps.cateId != null '> " +
|
|
"<if test = 'maps.cateId != null '> " +
|
|
"and (p.cate_id =#{maps.cateId} or c.pid=#{maps.cateId} )" +
|
|
"and (p.cate_id =#{maps.cateId} or c.pid=#{maps.cateId} )" +
|
|
"</if>" +
|
|
"</if>" +
|
|
|
|
+
|
|
"<if test = 'maps.isShow != null '> " +
|
|
"<if test = 'maps.isShow != null '> " +
|
|
"and p.is_show = #{maps.isShow} " +
|
|
"and p.is_show = #{maps.isShow} " +
|
|
"</if>" +
|
|
"</if>" +
|
|
|
|
+
|
|
|
|
+ "<if test = 'maps.companyId != null '> " +
|
|
|
|
+ "and find_in_set(#{maps.companyId},p.company_ids) " +
|
|
|
|
+ "</if>" +
|
|
|
|
+
|
|
" order by v.id desc "+
|
|
" order by v.id desc "+
|
|
"</script>"})
|
|
"</script>"})
|
|
List<FsStoreProductAttrValueVO> selectFsStoreProductAttrValueListVO(@Param("maps")FsProductAttrValueParam param);
|
|
List<FsStoreProductAttrValueVO> selectFsStoreProductAttrValueListVO(@Param("maps")FsProductAttrValueParam param);
|