|
@@ -80,6 +80,9 @@ public interface FsStoreProductMapper
|
|
|
"<if test = 'maps.isShow != null '> " +
|
|
|
"and p.is_show =#{maps.isShow} " +
|
|
|
"</if>" +
|
|
|
+ "<if test = 'maps.warehouseCode != null '> " +
|
|
|
+ "and p.warehouse_code =#{maps.warehouseCode} " +
|
|
|
+ "</if>" +
|
|
|
" order by p.product_id desc "+
|
|
|
"</script>"})
|
|
|
List<FsStoreProductListVO> selectFsStoreProductListVO(@Param("maps")FsStoreProduct fsStoreProduct);
|
|
@@ -107,6 +110,9 @@ public interface FsStoreProductMapper
|
|
|
"<if test = 'maps.isShow != null '> " +
|
|
|
"and p.is_show =#{maps.isShow} " +
|
|
|
"</if>" +
|
|
|
+ "<if test = 'maps.warehouseCode != null '> " +
|
|
|
+ "and p.warehouse_code =#{maps.warehouseCode} " +
|
|
|
+ "</if>" +
|
|
|
" order by p.product_id desc "+
|
|
|
"</script>"})
|
|
|
List<FsStoreProductListVO> selectFsStoreProductBarCodeListVO(@Param("maps")FsStoreProduct fsStoreProduct);
|